fixed disappearing characters
[swftools.git] / lib / devices / record.h
blob9d42ec51bc53dff6db9d1c75839fad89c4c986aa
1 /* swfoutput.h
2 Header file for swfoutput.cc (and swfoutput_x11.cc).
4 Part of the swftools package.
6 Copyright (c) 2001,2002,2003 Matthias Kramm <kramm@quiss.org>
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.
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.
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 */
22 #ifndef __record_h__
23 #define __record_h__
25 #include "../gfxdevice.h"
26 #include "../gfxtools.h"
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
33 void gfxdevice_record_init(gfxdevice_t*, char use_tempfile);
35 gfxdevice_t* gfxdevice_record_new(char*filename);
37 void gfxdevice_record_flush(gfxdevice_t*, gfxdevice_t*, gfxfontlist_t**);
39 void gfxresult_record_replay(gfxresult_t*, gfxdevice_t*, gfxfontlist_t**);
41 void gfxdevice_record_show(gfxdevice_t*dev);
43 #ifdef __cplusplus
45 #endif
47 #endif //__record_h__