X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.h;h=81ccf9f1abb337b5947804d823bba2469baaeeaf;hb=a55b5d3b097075e662d5a6d0b75185f5b371d290;hp=d7e186ee4fa683b7c577c7416d611d26e3c2e4a3;hpb=56b6a8db558cbcc9d8fd7313d2c68b0325421f23;p=swftools.git diff --git a/lib/rfxswf.h b/lib/rfxswf.h index d7e186e..81ccf9f 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -22,6 +22,21 @@ #define DEBUG_RFXSWF +#ifndef TRUE +#define TRUE (1) +#endif +#ifndef FALSE +#define FALSE (0) +#endif + +#ifdef WORDS_BIGENDIAN +#define SWAP16(s) ((U16) ((U8*)&s)[0] | ((U16) ((U8*)&s)[1] << 8)) +#define SWAP32(s) ((U32) ((U8*)&s)[0] | ((U32) ((U8*)&s)[1] << 8) | ((U32) ((U8*)&s)[2] << 16) | ((U32) ((U8*)&s)[3] << 24)) +#else +#define SWAP16(x) x +#define SWAP32(x) x +#endif + // SWF Types typedef unsigned long U32; @@ -132,8 +147,8 @@ TAG * swf_PrevTag(TAG * t); int swf_GetFrameNo(TAG * t); // should be renamed to TagGetFrame U16 swf_GetTagID(TAG * t); // ... TagGetID -U32 swf_GetDataSize(TAG * t); // ... TagGetDataSize -U8* swf_GetDataSizePtr(TAG * t); +U32 swf_GetTagLen(TAG * t); // ... TagGetTagLen +U8* swf_GetTagLenPtr(TAG * t); U32 swf_GetBits(TAG * t,int nbits); S32 swf_GetSBits(TAG * t,int nbits); @@ -359,6 +374,9 @@ int swf_FontUse(FONTUSAGE * use,U8 * s); int swf_FontSetDefine(TAG * t,SWFFONT * f); int swf_FontSetInfo(TAG * t,SWFFONT * f); +int swf_FontExtract_DefineTextCallback(int id,SWFFONT * f,TAG * t,int jobs, + void(*callback)(int*chars, int nr, int id)); + // the following two functions are obsolete and will be removed soon int swf_FontExport(int handle,SWFFONT * f); int swf_FontImport(int handle,SWFFONT * * f); @@ -422,6 +440,7 @@ int swf_ObjectMove(TAG * t,U16 depth,MATRIX * m,CXFORM * cx); #define BC_END 0x0800 #define BC_INSERT 0x0a00 #define BC_DELETE 0x0c00 +#define BC_CLEAR 0x0e00 #define BC_BACKSPACE 0x1000 #define BC_ENTER 0x1a00 #define BC_CURSORUP 0x1c00 @@ -494,6 +513,7 @@ int swf_SetLosslessBitsGrayscale(TAG * t,U16 width,U16 height,U8 * bitmap); // swftools.c U8 swf_isDefiningTag(TAG * t); +U8 swf_isPseudoDefiningTag(TAG * t); U8 swf_isAllowedSpriteTag(TAG * t); U16 swf_GetDefineID(TAG * t); U16 swf_GetPlaceID(TAG * t); //PLACEOBJECT, PLACEOBJECT2 (sometimes), REMOVEOBJECT