X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.h;h=f63b51bed983f14ffc6b076dd4eff8aa10e4e44f;hb=9e51523b57fc5e715d498039543f8e630b664d7b;hp=67046f28f84decf1428293610f572d8c6744b2b2;hpb=30b68dc4d9d219f77e73bbd1db59dd41fd27d1eb;p=swftools.git diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 67046f2..f63b51b 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -24,10 +24,6 @@ #ifndef __RFX_SWF_INCLUDED__ #define __RFX_SWF_INCLUDED__ -#ifdef __cplusplus -extern "C" { -#endif - #include #include #include @@ -41,6 +37,10 @@ extern "C" { #include "./mem.h" #include "./types.h" +#ifdef __cplusplus +extern "C" { +#endif + #define DEBUG_RFXSWF #ifdef RFXSWF_DISABLESOUND #define NO_MP3 @@ -227,7 +227,7 @@ int swf_SetU8(TAG * t,U8 v); // resets Bitcount int swf_SetU16(TAG * t,U16 v); void swf_SetS16(TAG * t,int v); int swf_SetU32(TAG * t,U32 v); -#define swf_SetString(t,s) swf_SetBlock(t,s,strlen(s)+1) +#define swf_SetString(t,s) swf_SetBlock(t,s,strlen((const char *)s)+1) //int swf_GetPoint(TAG * t,SPOINT * p); // resets Bitcount int swf_GetRect(TAG * t,SRECT * r); @@ -334,6 +334,7 @@ SRECT swf_TurnRect(SRECT r, MATRIX* m); #define ST_DEFINEMORPHSHAPE2 84 /* version 8 */ #define ST_SCENEDESCRIPTION 86 /* version 9 */ #define ST_DEFINEBINARY 87 /* version 9 */ +#define ST_DEFINEFONTNAME 88 /* version 9 */ /* custom tags- only valid for swftools */ #define ST_REFLEX 777 /* to identify generator software */ @@ -396,9 +397,10 @@ typedef struct _SHAPE2 SRECT* bbox; // may be NULL } SHAPE2; +enum SHAPELINETYPE {moveTo, lineTo, splineTo}; typedef struct _SHAPELINE { - enum {moveTo, lineTo, splineTo} type; + enum SHAPELINETYPE type; SCOORD x,y; SCOORD sx,sy; //only if type==splineTo int fillstyle0; @@ -1072,4 +1074,3 @@ void AVM2_InsertStops(SWF*swf); #endif #endif -