diff options
author | Sven Gothel <[email protected]> | 2001-06-18 23:20:46 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2001-06-18 23:20:46 +0000 |
commit | cc7376ee5616743cdd7b7a5c711f054b32ae8e4e (patch) | |
tree | 1550b5fd8630667151fe30e74811abb6a45792ea /CNativeCode/jnitools.h | |
parent | 8512ae5ab8a75fad8a75aec0b6e04e3fcd1d2c6f (diff) |
2.8.0.0 pre-release cvs only
Diffstat (limited to 'CNativeCode/jnitools.h')
-rw-r--r-- | CNativeCode/jnitools.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CNativeCode/jnitools.h b/CNativeCode/jnitools.h index d4eb716..1af8722 100644 --- a/CNativeCode/jnitools.h +++ b/CNativeCode/jnitools.h @@ -19,6 +19,12 @@ #define LIBAPI #endif + #ifndef USE_64BIT_POINTER + typedef int PointerHolder; + #else + typedef long PointerHolder; + #endif + typedef enum { T_NOPE = 0, T_VOID, |