X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.h;h=2a07fdb87a81d0cc8ee6f473d4566dcde59ccdc8;hb=6c3ab5574d31504d24710c2756899d49275c1a37;hp=d246cd2ba83461453767cc91450f319f7d61372c;hpb=483e075ffb6bd4a66fa57d7e628108d7296d15be;p=swftools.git diff --git a/lib/rfxswf.h b/lib/rfxswf.h index d246cd2..2a07fdb 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 @@ -227,7 +223,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); @@ -397,9 +393,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; @@ -1068,9 +1065,4 @@ FILTER*swf_NewFilter(U8 type); void AVM2_InsertStops(SWF*swf); -#ifdef __cplusplus -} #endif - -#endif -