blob: 449786272232a60229342bb0cb26b0c86800b86c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
|