diff options
author | madmaxoft <github@xoft.cz> | 2013-10-28 21:12:49 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-28 21:12:49 +0100 |
commit | fd85ac23c1160910042c0887ea7e4e3460d1cb71 (patch) | |
tree | 760dc71b6d9c2f2d6987ae81cf54da1ce3bdea6c /Tools/ProtoProxy/Globals.h | |
parent | MC uses VarInts only up to 32-bits. (diff) | |
download | cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar.gz cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar.bz2 cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar.lz cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar.xz cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.tar.zst cuberite-fd85ac23c1160910042c0887ea7e4e3460d1cb71.zip |
Diffstat (limited to 'Tools/ProtoProxy/Globals.h')
-rw-r--r-- | Tools/ProtoProxy/Globals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/ProtoProxy/Globals.h b/Tools/ProtoProxy/Globals.h index 3b154b866..8424aca81 100644 --- a/Tools/ProtoProxy/Globals.h +++ b/Tools/ProtoProxy/Globals.h @@ -70,6 +70,10 @@ typedef long long Int64; typedef int Int32; typedef short Int16; +typedef unsigned long long UInt64; +typedef unsigned int UInt32; +typedef unsigned short UInt16; + |