From f07a5d8e942486aadff722d4f7d2438f6c93d309 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 5 Jan 2002 21:48:17 +0000 Subject: [PATCH] new functions swf_WriteHeader, swf_WriteTag --- lib/rfxswf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/rfxswf.h b/lib/rfxswf.h index ca8bdb3..506f156 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -141,6 +141,10 @@ int swf_ReadSWF(int handle,SWF * swf); // Reads SWF to memory (malloc'ed), int swf_WriteSWF(int handle,SWF * swf); // Writes SWF to file, returns length or <0 if fails 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 + +// for streaming: +int swf_WriteHeader(int handle,SWF * swf); // Writes Header of swf to file +int swf_WriteTag(int handle,TAG * tag); // Writes TAG to file TAG * swf_InsertTag(TAG * after,U16 id); // updates frames, if necessary int swf_DeleteTag(TAG * t); -- 1.7.10.4