blob: d8c88574a1c69d6528e658a5d2483d433c1e929b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
* This file should be replaced by the "official" jni_md.h
* for linux
*/
#ifndef __JNI_MD_H__
#define __JNI_MD_H__
/**
* Nothing special for these declspecs for Linux. Leave alone.
*/
#define JNIEXPORT
#define JNIIMPORT
#define JNICALL
typedef signed char jbyte;
typedef int jint;
/* 64 bit? */
#ifdef _LP64
typedef long jlong;
#else
typedef long long jlong;
#endif
#endif /* __JNI_MD_H__ */
|