-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib_swfextract.h
executable file
·94 lines (81 loc) · 3.25 KB
/
lib_swfextract.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
87
88
89
90
91
92
93
94
/*
* 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: lib_swfextract.h,v $
* Revision 1.6 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.5 2001/07/13 14:04:51 clampr
* use one of the debug targets if you want debugging messages on
*
* Revision 1.4 2001/07/13 13:26:55 muttley
* Added handling for button2actions.
* We should be able to parse all URLs now
*
* Revision 1.3 2001/07/09 14:22:57 acme
* Added newline to end of file
*
* Revision 1.2 2001/07/09 13:51:37 muttley
* fixed minor bug in text_extract and lib_swfextract where it would try
* and print out strings instead of urls :(
*
* Revision 1.1 2001/07/09 12:47:06 muttley
* Initial revision
*
*
*/
#include "swf_types.h"
#include "swf_parse.h"
#include "swf_destroy.h"
typedef struct swf_extractor swf_extractor;
struct swf_extractor
{
swf_parser * parser;
int num_strings;
int num_urls;
char ** strings;
char ** urls;
};
/*internally visible functions */
void get_text (swf_extractor * swf, int * error);
void add_string (swf_extractor * swf, int * error, char * string);
void add_url (swf_extractor * swf, int * error, char * string);
void add_text (int * error, char *** list, int * num, int * max, char * string);
void examine_doactions (swf_extractor * swf, int * error, swf_doaction_list * list);
void parse_doaction (swf_extractor * swf, int * error);
void parse_defineedittext (swf_extractor * swf, int * error);
void parse_definetext (swf_extractor * swf, int * error);
void parse_definefont (swf_extractor * swf, int * error);
void parse_definefont2 (swf_extractor * swf, int * error);
void parse_definefontinfo (swf_extractor * swf, int * error);
void parse_definetext2 (swf_extractor * swf, int * error);
void parse_definebutton (swf_extractor * swf, int * error);
void parse_definebutton2 (swf_extractor * swf, int * error);
/* externally visible functions */
extern swf_extractor * load_swf (char * file_name, int * error);
extern void destroy_swf (swf_extractor * swf);
extern int get_number_strings (swf_extractor * swf);
extern int get_number_urls (swf_extractor * swf);
extern char ** get_strings (swf_extractor * swf);
extern char ** get_urls (swf_extractor * swf);
/*
Local Variables:
mode: C
c-basic-offset: 4
tab-width: 4
End:
*/