summaryrefslogtreecommitdiffstats
path: root/make/stub_includes/common/stddef.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-26 02:14:26 +0100
committerSven Gothel <[email protected]>2014-01-26 02:14:26 +0100
commitaac4c5fc4ab7c77eff3b71f518100dd182ec2c33 (patch)
tree3883e6e9a97146a0cbf503ff67f7b58870fe22dd /make/stub_includes/common/stddef.h
parentac84afd26ad3b34851a423fb90e6c819b9dc9495 (diff)
Cleanup Build: GlueGen config files, stub_includes; Add JoclVersion, Android JoclVersionActivity
Cleanup Build: - Move gluegen config files into make/config (cleanup) - Move stub_includes into respective folder make/stub_includes and keep resources 'clean' JoclVersion: - Analoge to JoglVersion, replaces JOCLVersion (deprecated for now) - Added text based CL info dump. JoclVersionActivity: - Analog to JoclVersionActivity - Added full launch .. tested on Android (but no OpenCL avail.)
Diffstat (limited to 'make/stub_includes/common/stddef.h')
-rw-r--r--make/stub_includes/common/stddef.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/make/stub_includes/common/stddef.h b/make/stub_includes/common/stddef.h
new file mode 100644
index 00000000..f6c7207b
--- /dev/null
+++ b/make/stub_includes/common/stddef.h
@@ -0,0 +1,24 @@
+#ifndef __stddef_h_
+#define __stddef_h_
+
+ /**
+ * Look in the GlueGen.java API documentation for the build-in types (terminal symbols)
+ * definition.
+ *
+ * The following types are build-in:
+ *
+ * __int32
+ * int32_t
+ * uint32_t
+ * __int64
+ * int64_t
+ * uint64_t
+ * ptrdiff_t
+ * size_t
+ */
+
+ #define NULL ((void *)0)
+
+ typedef int wchar_t;
+
+#endif /* __stddef_h_ */