From: kramm Date: Sat, 6 Jan 2007 22:27:21 +0000 (+0000) Subject: added 64 bit types X-Git-Tag: release-0-8-0~80 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=cd3c954f7aa80b7388abe13e7ae9b924a1bb4953 added 64 bit types --- diff --git a/lib/types.h b/lib/types.h index 8ac3de7..ccc576d 100644 --- a/lib/types.h +++ b/lib/types.h @@ -30,11 +30,13 @@ // 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