You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
11 lines
264 B
C
11 lines
264 B
C
|
|
#ifndef LOOPER_H
|
||
|
|
#define LOOPER_H
|
||
|
|
|
||
|
|
typedef void ALooper;
|
||
|
|
ALooper * ALooper_prepare(int opts);
|
||
|
|
void ALooper_wake(ALooper *looper);
|
||
|
|
bool ALooper_isPolling(ALooper *looper);
|
||
|
|
int ALooper_pollOnce(int timeoutMillis, int* outFd, int* outEvents, void** outData);
|
||
|
|
|
||
|
|
#endif
|