Go to the documentation of this file.00001
00002 typedef unsigned char uchar;
00003 typedef unsigned short ushort;
00004 typedef unsigned int uint;
00005 typedef unsigned long ulong;
00006 typedef wchar_t wchar;
00007
00008 #define SAVEDELETE(p) if(p){delete p; p=0;}
00009 #define SAVEDELETEARRAY(p) if(p){delete [] p; p=0;}