diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 15:44:45 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 16:26:59 +0200 |
commit | e704c34ba1ef09f0abd0ad38c79245385f714dc4 (patch) | |
tree | da009bf1e68822f9fd2bab6791f4bb1b0b70c4eb /include/wntgcci/jni_md.h | |
parent | abd89db2a9c1aee6f7a7f39374db7bc6d92e60c6 (diff) |
In real jni_md.h, jint is 32bits and jlong is pointer width
Change-Id: I17b8918ddc530fd28c5549e3e78d041dc6c867bc
Diffstat (limited to 'include/wntgcci/jni_md.h')
-rw-r--r-- | include/wntgcci/jni_md.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wntgcci/jni_md.h b/include/wntgcci/jni_md.h index e77438d75e6b..92ce6342549d 100644 --- a/include/wntgcci/jni_md.h +++ b/include/wntgcci/jni_md.h @@ -27,7 +27,7 @@ #define JNICALL __stdcall typedef long jint; -typedef __int64 jlong; +typedef long jlong; typedef char jbyte; #endif /* JNI_MD_H_INCLUDED */ |