X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.h;h=77ddd222c7fc364b48f7a281c18f365735dd9aaf;hb=f4dd18d0c0b1c49af1f14f80d395fce7f9cd1350;hp=f63b51bed983f14ffc6b076dd4eff8aa10e4e44f;hpb=fc8c4a0518af72a38681ca4608d7c23117a252c2;p=swftools.git diff --git a/lib/rfxswf.h b/lib/rfxswf.h index f63b51b..77ddd22 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -28,7 +28,9 @@ #include #include #include +#ifndef WIN32 #include +#endif #include #include #include "../config.h" @@ -162,7 +164,6 @@ int swf_ReadSWF2(reader_t*reader, SWF * swf); // Reads SWF via callback int swf_ReadSWF(int handle,SWF * swf); // Reads SWF to memory (malloc'ed), returns length or <0 if fails int swf_WriteSWF2(writer_t*writer, SWF * swf); // Writes SWF via callback, returns length or <0 if fails int swf_WriteSWF(int handle,SWF * swf); // Writes SWF to file, returns length or <0 if fails -int swf_WriteSWC(int handle, SWF * swf); // for convenience, equal to swf->compressed=1;swf_WriteSWF(..) int swf_WriteCGI(SWF * swf); // Outputs SWF with valid CGI header to stdout void swf_FreeTags(SWF * swf); // Frees all malloc'ed memory for swf SWF* swf_CopySWF(SWF*swf); @@ -1063,9 +1064,22 @@ typedef struct _FILTER_BLUR { int passes; } FILTER_BLUR; +typedef struct _FILTER_GLOW { + U8 type; + RGBA rgba; + double blurx; + double blury; + double strength; + int passes; + char innerglow; + char knockout; + char composite; +} FILTER_GLOW; + void swf_SetFilter(TAG*tag, FILTER*f); FILTER*swf_GetFilter(TAG*tag); FILTER*swf_NewFilter(U8 type); +void swf_DeleteFilter(FILTER*f); void AVM2_InsertStops(SWF*swf);