-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint_utils.h
executable file
·86 lines (75 loc) · 3.42 KB
/
print_utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright (C) 2001 Simon Wistow <[email protected]>
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
* $Log: print_utils.h,v $
* Revision 1.13 2002/06/28 17:52:42 muttley
* Trying to get write_through to work
*
* Revision 1.12 2001/07/14 00:17:55 clampr
* added emacs file variables to avoid clashing with existing style (now I know what it is)
*
* Revision 1.11 2001/07/13 13:26:55 muttley
* Added handling for button2actions.
* We should be able to parse all URLs now
*
* Revision 1.10 2001/07/09 12:47:59 muttley
* Changes for lib_swfextract and text_extract
*
* Revision 1.8 2001/06/29 15:10:11 muttley
* The printing of the actual text of a DefineText (and DefineText2 now)
* is no longer such a big hack. Font information is kept in the swf_parser
* context and the function that will take a text_record_list and print out
* the text (textrecord_list_to_text) has been moved to swf_parse.c ...
*
* A couple of potential bugs have also been fixed and some more 'todo's added
*
* Revision 1.7 2001/06/26 13:45:03 muttley
* Add facilities for converting DefineFontInfo, DefineFont and DefineText info into 'real' text
*
*/
#include "swf_types.h"
#include "swf_parse.h"
#ifndef PRINT_UTILS_H
#define PRINT_UTILS_H
#define INDENT printf(" ");
extern void swf_print_header (swf_header *, int *);
extern void print_cxform (swf_cxform *, const char *);
extern void print_matrix (swf_matrix *, const char *);
extern void print_rect (swf_rect * , const char *);
extern void print_shaperecords (swf_shaperecord_list *, const char *);
extern void print_textrecord (swf_textrecord *, const char *);
extern void print_textrecords (swf_textrecord_list *, const char *, swf_parser *);
extern void print_buttonrecords (swf_buttonrecord_list *, const char *);
extern void print_doactions (swf_doaction_list *, const char *);
extern void print_doaction (swf_doaction *, const char *);
extern void print_imageguts (swf_imageguts *, const char *);
extern void print_button2actions (swf_button2action_list *, const char *);
extern void print_button2action (swf_button2action *, const char *);
extern void print_shape_records (swf_shaperecord_list *);
extern void print_mp3header_list (swf_mp3header_list *, const char *);
extern void print_adpcm (swf_adpcm *, const char *);
extern void print_startsound (swf_startsound *, const char *);
extern void print_soundstreamhead (swf_soundstreamhead *, const char *, int);
extern void print_shapestyle (swf_shapestyle * style, const char * str);
#endif
/*
Local Variables:
mode: C
c-basic-offset: 4
tab-width: 4
End:
*/