fixed mem leaks
[swftools.git] / lib / devices / record.h
1 /* swfoutput.h
2    Header file for swfoutput.cc (and swfoutput_x11.cc).
3
4    Part of the swftools package.
5
6    Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org> 
7  
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
21
22 #ifndef __record_h__
23 #define __record_h__
24
25 #include "../gfxdevice.h"
26 #include "../gfxtools.h"
27
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 void gfxdevice_record_init(gfxdevice_t*, char use_tempfile);
34
35 gfxdevice_t* gfxdevice_record_new(char*filename);
36
37 void gfxdevice_record_flush(gfxdevice_t*, gfxdevice_t*, gfxfontlist_t**);
38
39 void gfxresult_record_replay(gfxresult_t*, gfxdevice_t*, gfxfontlist_t**);
40
41 #ifdef __cplusplus
42 }
43 #endif
44
45 #endif //__record_h__