Menu

#6 JDK/include/win32/jni_md.h mod required

v1.0 (example)
open
nobody
5
2005-05-17
2005-05-17
No

The __int64 type is an MS type not defined for GNU.

OLD:
typedef __int64 jlong;

NEW:

#ifdef __GNUC__
typedef long long jlong;
#else
typedef __int64 jlong;
#endif

Discussion

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.