* Fix Blender 2.62 issue with uint64_t

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9186 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
Sha..om 2012-02-23 14:05:59 +00:00
parent 321c50c514
commit 06f5ad5bce

View File

@ -285,6 +285,7 @@ public class Structure implements Cloneable {
PRIMARY_TYPES.put("int", INTEGER); PRIMARY_TYPES.put("int", INTEGER);
PRIMARY_TYPES.put("long", LONG); PRIMARY_TYPES.put("long", LONG);
PRIMARY_TYPES.put("ulong", LONG); PRIMARY_TYPES.put("ulong", LONG);
PRIMARY_TYPES.put("uint64_t", LONG);
PRIMARY_TYPES.put("float", FLOAT); PRIMARY_TYPES.put("float", FLOAT);
PRIMARY_TYPES.put("double", DOUBLE); PRIMARY_TYPES.put("double", DOUBLE);
PRIMARY_TYPES.put("void", VOID); PRIMARY_TYPES.put("void", VOID);