added 64 bit types
authorkramm <kramm>
Sat, 6 Jan 2007 22:27:21 +0000 (22:27 +0000)
committerkramm <kramm>
Sat, 6 Jan 2007 22:27:21 +0000 (22:27 +0000)
lib/types.h

index 8ac3de7..ccc576d 100644 (file)
 
 // SWF Types
 
-typedef         unsigned long   U32;
-typedef         signed long     S32;
-typedef         unsigned short  U16;
-typedef         signed short    S16;
-typedef         unsigned char   U8;
-typedef         signed char     S8;
+typedef         unsigned long long  U64;
+typedef         signed long long    S64;
+typedef         unsigned long       U32;
+typedef         signed long         S32;
+typedef         unsigned short      U16;
+typedef         signed short        S16;
+typedef         unsigned char       U8;
+typedef         signed char         S8;
 
 #endif