diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-05-07 22:22:04 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-05-07 22:22:04 +0200 |
commit | 35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf (patch) | |
tree | af0664fd7a744aec4ae416f9e524f0e1c9570972 /source/Globals.h | |
parent | Updated version text to include 1.2.5; ChunkSender doesn't serialize chunk packets for chunks without a client (diff) | |
download | cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar.gz cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar.bz2 cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar.lz cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar.xz cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.tar.zst cuberite-35c8bc4c5807af41a37cc901dcbbfee7ab73f7bf.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Globals.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Globals.h b/source/Globals.h index 99ef55444..3a9c6e9db 100644 --- a/source/Globals.h +++ b/source/Globals.h @@ -65,6 +65,15 @@ +// Integral types with predefined sizes:
+typedef long long Int64;
+typedef int Int32;
+typedef short Int16;
+
+
+
+
+
// A macro to disallow the copy constructor and operator= functions
// This should be used in the private: declarations for any class that shouldn't allow copying itself
#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
|