summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-10-28 21:12:49 +0100
committermadmaxoft <github@xoft.cz>2013-10-28 21:12:49 +0100
commitfd85ac23c1160910042c0887ea7e4e3460d1cb71 (patch)
tree760dc71b6d9c2f2d6987ae81cf54da1ce3bdea6c
parentMC uses VarInts only up to 32-bits. (diff)
downloadcuberite-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
-rw-r--r--Tools/ProtoProxy/Globals.h4
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;
+