- change pointers to jlong across platforms

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8488 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-10-22 01:00:42 +00:00
parent aa96a1caf8
commit 6ce4cc012e

View File

@ -35,11 +35,11 @@
#include "LinearMath/btVector3.h"
#ifdef _WIN32
typedef ULONG OBJ_PTR;
typedef jlong OBJ_PTR;
#elif _WIN64
typedef _int64 OBJ_PTR;
typedef jlong OBJ_PTR;
#else
typedef long OBJ_PTR;
typedef jlong OBJ_PTR;
#endif
/**