diff options
-rw-r--r-- | src/libandroid.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libandroid.c b/src/libandroid.c index fb58bd7..68774b6 100644 --- a/src/libandroid.c +++ b/src/libandroid.c @@ -70,6 +70,12 @@ ALooper_pollAll(int timeoutMillis, int *outFd, int *outEvents, void **outData) return 0; } +int +ALooper_pollOnce(int timeoutMillis, int *outFd, int *outEvents, void **outData) +{ + return 0; +} + // ASensor struct ASensor { @@ -384,6 +390,12 @@ AInputQueue_detachLooper(struct AInputQueue *queue) } int32_t +AInputQueue_hasEvents(struct AInputQueue *queue) +{ + return 0; +} + +int32_t AInputQueue_getEvent(struct AInputQueue *queue, struct AInputEvent **outEvent) { return 0; |