diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 16:43:36 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-07 16:43:36 +0200 |
commit | bf3d8ba53bdbe15f37988a274ee4fb555479cb87 (patch) | |
tree | 929ef81154d5c7595a10c1cb702019d95b0a7a9f /include | |
parent | 4129130cab83eb1e7e1ebf153c914524846f7e4b (diff) |
jlong is 64-bit, my bad
Change-Id: I39ed9f4079152fb5405f0dfceee1d22536d474a6
Diffstat (limited to 'include')
-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 92ce6342549d..e77438d75e6b 100644 --- a/include/wntgcci/jni_md.h +++ b/include/wntgcci/jni_md.h @@ -27,7 +27,7 @@ #define JNICALL __stdcall typedef long jint; -typedef long jlong; +typedef __int64 jlong; typedef char jbyte; #endif /* JNI_MD_H_INCLUDED */ |