We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AndroidNDK
1 parent 75b7f51 commit 907c6a0Copy full SHA for 907c6a0
Sources/AndroidNDK/include/ndk.h
@@ -0,0 +1,20 @@
1
+#pragma once
2
+
3
+#include <android/log.h>
4
+#include <android/looper.h>
5
+#include <android/choreographer.h>
6
+#include <android/native_activity.h>
7
8
+// needed for AndroidSystem
9
+#include <sys/epoll.h>
10
+#include <sys/eventfd.h>
11
+#include <sys/stat.h>
12
+#include <sys/socket.h>
13
+#include <sys/sysinfo.h>
14
+#include <sys/timerfd.h>
15
+#include <sys/types.h>
16
+#include <errno.h>
17
+#include <fcntl.h>
18
+#include <pthread.h>
19
+#include <sched.h>
20
+#include <unistd.h>
Sources/AndroidNDK/module.modulemap
@@ -0,0 +1,5 @@
+module AndroidNDK [system] {
+ link "log"
+ header "ndk.h"
+ export *
+}
Sources/AndroidNDK/src.c
@@ -0,0 +1 @@
0 commit comments