diff options
Diffstat (limited to 'make/resources/stubs_includes')
-rw-r--r-- | make/resources/stubs_includes/common/stddef.h | 24 | ||||
-rw-r--r-- | make/resources/stubs_includes/common/stdint.h | 48 | ||||
-rw-r--r-- | make/resources/stubs_includes/gl/gltypes.h | 18 | ||||
-rw-r--r-- | make/resources/stubs_includes/jvm/jni.h | 78 | ||||
-rw-r--r-- | make/resources/stubs_includes/jvm/jni_md.h | 15 |
5 files changed, 183 insertions, 0 deletions
diff --git a/make/resources/stubs_includes/common/stddef.h b/make/resources/stubs_includes/common/stddef.h new file mode 100644 index 00000000..f6c7207b --- /dev/null +++ b/make/resources/stubs_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_ */ diff --git a/make/resources/stubs_includes/common/stdint.h b/make/resources/stubs_includes/common/stdint.h new file mode 100644 index 00000000..4e456608 --- /dev/null +++ b/make/resources/stubs_includes/common/stdint.h @@ -0,0 +1,48 @@ +#ifndef __stdint_h_ +#define __stdint_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 + */ + + typedef signed char int8_t; + typedef unsigned short int16_t; + + typedef unsigned char uint8_t; + typedef unsigned short uint16_t; + + typedef ptrdiff_t intptr_t; + typedef size_t uintptr_t; + + /* Greatest-width integer types */ + /* Modern GCCs provide __INTMAX_TYPE__ */ + #if defined(__INTMAX_TYPE__) + typedef __INTMAX_TYPE__ intmax_t; + #elif __have_longlong64 + typedef signed long long intmax_t; + #else + typedef int64_t intmax_t; + #endif + + /* Modern GCCs provide __UINTMAX_TYPE__ */ + #if defined(__UINTMAX_TYPE__) + typedef __UINTMAX_TYPE__ uintmax_t; + #elif __have_longlong64 + typedef unsigned long long uintmax_t; + #else + typedef uint64_t uintmax_t; + #endif + +#endif /* __stdint_h_ */ diff --git a/make/resources/stubs_includes/gl/gltypes.h b/make/resources/stubs_includes/gl/gltypes.h new file mode 100644 index 00000000..3272b72a --- /dev/null +++ b/make/resources/stubs_includes/gl/gltypes.h @@ -0,0 +1,18 @@ +//we need only the basic gl types for the cl-gl interoperability +//extracted from gl3.h + +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef signed char GLbyte; +typedef short GLshort; +typedef int GLint; +typedef int GLsizei; +typedef unsigned char GLubyte; +typedef unsigned short GLushort; +typedef unsigned int GLuint; +typedef float GLfloat; +typedef float GLclampf; +typedef double GLdouble; +typedef double GLclampd; +typedef void GLvoid; diff --git a/make/resources/stubs_includes/jvm/jni.h b/make/resources/stubs_includes/jvm/jni.h new file mode 100644 index 00000000..be01d018 --- /dev/null +++ b/make/resources/stubs_includes/jvm/jni.h @@ -0,0 +1,78 @@ +/* Stub header for JNI which provides needed declarations without more + complicated and unnecessary constructs */ + +/* + * JNI Types + */ + +#include "jni_md.h" + +typedef unsigned char jboolean; +typedef unsigned short jchar; +typedef short jshort; +typedef float jfloat; +typedef double jdouble; + +typedef jint jsize; + +struct _jobject; + +typedef struct _jobject *jobject; +typedef jobject jclass; +typedef jobject jthrowable; +typedef jobject jstring; +typedef jobject jarray; +typedef jarray jbooleanArray; +typedef jarray jbyteArray; +typedef jarray jcharArray; +typedef jarray jshortArray; +typedef jarray jintArray; +typedef jarray jlongArray; +typedef jarray jfloatArray; +typedef jarray jdoubleArray; +typedef jarray jobjectArray; +typedef jobject jweak; + +typedef union jvalue { + jboolean z; + jbyte b; + jchar c; + jshort s; + jint i; + jlong j; + jfloat f; + jdouble d; + jobject l; +} jvalue; + +struct _jfieldID; +typedef struct _jfieldID *jfieldID; + +struct _jmethodID; +typedef struct _jmethodID *jmethodID; + +/* + * jboolean constants + */ + +#define JNI_FALSE 0 +#define JNI_TRUE 1 + +/* + * possible return values for JNI functions. + */ + +#define JNI_OK 0 /* success */ +#define JNI_ERR (-1) /* unknown error */ +#define JNI_EDETACHED (-2) /* thread detached from the VM */ +#define JNI_EVERSION (-3) /* JNI version error */ +#define JNI_ENOMEM (-4) /* not enough memory */ +#define JNI_EEXIST (-5) /* VM already created */ +#define JNI_EINVAL (-6) /* invalid arguments */ + +/* + * used in ReleaseScalarArrayElements + */ + +#define JNI_COMMIT 1 +#define JNI_ABORT 2 diff --git a/make/resources/stubs_includes/jvm/jni_md.h b/make/resources/stubs_includes/jvm/jni_md.h new file mode 100644 index 00000000..44978627 --- /dev/null +++ b/make/resources/stubs_includes/jvm/jni_md.h @@ -0,0 +1,15 @@ +#define _JNI_IMPORT_OR_EXPORT_ +#define JNIEXPORT +#define JNIIMPORT +#define JNICALL + +typedef int jint; +#ifdef _LP64 /* 64-bit Solaris */ +typedef long jlong; +#else +typedef long long jlong; +#endif + +typedef signed char jbyte; + +typedef long JNIEnv; |