From 863d01fce956cd3f72a0fbd53c67a46762178802 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 2 Apr 2013 16:25:04 -0400 Subject: [PATCH] add typedefs for unsigned types (easier to type!) --- src/framework/common.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/framework/common.h b/src/framework/common.h index a519b99..0287946 100644 --- a/src/framework/common.h +++ b/src/framework/common.h @@ -10,6 +10,11 @@ const BOOL TRUE = 1; const BOOL FALSE = 0; #endif +typedef unsigned long ulong; +typedef unsigned int uint; +typedef unsigned short ushort; +typedef unsigned char uchar; + #ifndef SAFE_RELEASE #define SAFE_RELEASE(x) if (x) { (x)->Release(); (x) = NULL; } #endif