aboutsummaryrefslogtreecommitdiff
path: root/intdef.h
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <me@woz.blue> 2024-10-27 23:28:51 -0400
committerGravatar Matthew Wozniak <me@woz.blue> 2024-10-27 23:28:51 -0400
commitfb95177298bb92098b61f09b9f66c1fce32f2f02 (patch)
treec73b45c91f145dca7d055a1cde1f4efaa6db8da6 /intdef.h
parent36b6d84ee4b520bdf43891ea86df03cf660cb464 (diff)
downloadrt-fb95177298bb92098b61f09b9f66c1fce32f2f02.tar.gz
rt-fb95177298bb92098b61f09b9f66c1fce32f2f02.zip
add hooking and IVEngineServer interface
Diffstat (limited to 'intdef.h')
-rw-r--r--intdef.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/intdef.h b/intdef.h
index 03a8ac3..d6c2c59 100644
--- a/intdef.h
+++ b/intdef.h
@@ -4,13 +4,24 @@
#ifndef INTDEF_H
#define INTDEF_H
-typedef unsigned char byte;
+typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef long long vlong;
typedef unsigned long long uvlong;
+typedef ulong usize;
+typedef long isize;
+typedef uchar u8;
+typedef char i8;
+typedef ushort u16;
+typedef short i16;
+typedef uint u32;
+typedef int i32;
+typedef uvlong u64;
+typedef vlong i64;
+
#endif
// vi: sw=4 ts=4 noet tw=80 cc=80