File: jni_md.h

package info (click to toggle)
libjogl-java 1.1.1%2Bdak1-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 9,932 kB
  • ctags: 24,946
  • sloc: java: 87,017; ansic: 12,156; xml: 1,625; cpp: 302; objc: 91; sh: 35; makefile: 23
file content (15 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (10)
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;