Changeset 329
- Timestamp:
- Feb 21, 2012, 9:22:18 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/src/windows/javavm/export/jni_md.h
r286 r329 31 31 #define JNICALL __stdcall 32 32 33 #ifdef __GNUC__ 34 typedef int jint; 35 typedef __int64_t jlong; 36 typedef char jbyte; 37 #else 33 38 typedef long jint; 34 #ifdef __EMX__35 typedef __int64_t jlong;36 #else37 39 typedef __int64 jlong; 40 typedef signed char jbyte; 38 41 #endif 39 typedef signed char jbyte;40 42 41 43 #ifdef __cplusplus … … 51 53 inline TR jsafe_cast(TS ts) { jsafe_cast_POD_type_only(ts); return ts; } 52 54 53 #ifdef __ EMX__55 #ifdef __GNUC__ 54 56 /* sizeof(jchar) = sizeof(wchar_t) in GCC but the types are not relative 55 57 * (as opposed to MSVC) so an explicit cast is required */
Note:
See TracChangeset
for help on using the changeset viewer.