X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Frfxswf.h;h=903efc9f5c3838fb873b1f25b787e0cbe3f8fb2e;hp=f63b51bed983f14ffc6b076dd4eff8aa10e4e44f;hb=edcb4eeac02833226bc1fb28541a6c158b0c03cd;hpb=51d78ab55b3acc1a5d14a0deac79faebbeb4dc29 diff --git a/lib/rfxswf.h b/lib/rfxswf.h index f63b51b..903efc9 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);