1 |
/* |
2 |
parse_routines.h - Part of psiconv, a PSION 5 file formats converter |
3 |
Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl> |
4 |
|
5 |
This program is free software; you can redistribute it and/or modify |
6 |
it under the terms of the GNU General Public License as published by |
7 |
the Free Software Foundation; either version 2 of the License, or |
8 |
(at your option) any later version. |
9 |
|
10 |
This program is distributed in the hope that it will be useful, |
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
GNU General Public License for more details. |
14 |
|
15 |
You should have received a copy of the GNU General Public License |
16 |
along with this program; if not, write to the Free Software |
17 |
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
18 |
*/ |
19 |
|
20 |
#ifndef PSICONV_PARSE_ROUTINES_H |
21 |
#define PSICONV_PARSE_ROUTINES_H |
22 |
|
23 |
#include <psiconv/parse.h> |
24 |
|
25 |
#ifdef __cplusplus |
26 |
extern "C" { |
27 |
#endif /* __cplusplus */ |
28 |
|
29 |
|
30 |
/* *************** |
31 |
* misc.c * |
32 |
*************** */ |
33 |
|
34 |
/* This function returns a copy of a string, that contains no ASCII codes |
35 |
that are not printable. You should free this string yourself when you are |
36 |
done with it. Returns NULL if there is not enough memory left. */ |
37 |
extern char *psiconv_make_printable(const char *s); |
38 |
|
39 |
/* ************** |
40 |
* checkuid.c * |
41 |
************** */ |
42 |
|
43 |
extern psiconv_u32 psiconv_checkuid(psiconv_u32 uid1, |
44 |
psiconv_u32 uid2,psiconv_u32 uid3); |
45 |
|
46 |
/* ****************** |
47 |
* parse_simple.c * |
48 |
****************** */ |
49 |
|
50 |
extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev, |
51 |
psiconv_u32 off, int *status); |
52 |
extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev, |
53 |
psiconv_u32 off, int *status); |
54 |
extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev, |
55 |
psiconv_u32 off, int *status); |
56 |
|
57 |
extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev, |
58 |
psiconv_u32 off, int *length, int *status); |
59 |
extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev, |
60 |
psiconv_u32 off, int *length, int *status); |
61 |
extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev, |
62 |
psiconv_u32 off, int *length, |
63 |
int *status); |
64 |
extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev, |
65 |
psiconv_u32 off, int *length, |
66 |
int *status); |
67 |
extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev, |
68 |
psiconv_u32 off,int *length, |
69 |
int *status); |
70 |
|
71 |
extern int psiconv_parse_bool(const psiconv_buffer buf, int lev, |
72 |
psiconv_u32 off, int *length, |
73 |
psiconv_bool_t *result); |
74 |
|
75 |
|
76 |
/* ****************** |
77 |
* parse_layout.c * |
78 |
****************** */ |
79 |
|
80 |
extern int psiconv_parse_color(const psiconv_buffer buf, int lev, |
81 |
psiconv_u32 off, int *length, |
82 |
psiconv_color *result); |
83 |
|
84 |
extern int psiconv_parse_font(const psiconv_buffer buf, int lev, |
85 |
psiconv_u32 off, int *length, |
86 |
psiconv_font *result); |
87 |
|
88 |
extern int psiconv_parse_border(const psiconv_buffer buf,int lev, |
89 |
psiconv_u32 off, int *length, |
90 |
psiconv_border *result); |
91 |
|
92 |
extern int psiconv_parse_bullet(const psiconv_buffer buf,int lev, |
93 |
psiconv_u32 off, int *length, |
94 |
psiconv_bullet *result); |
95 |
|
96 |
extern int psiconv_parse_tab(const psiconv_buffer buf, int lev, |
97 |
psiconv_u32 off, int *length, |
98 |
psiconv_tab *result); |
99 |
|
100 |
/* Note: the next two are special, because they modify an existing |
101 |
layout structure! If it exits due to an unexpected error, part |
102 |
of the structure may be modified, but it is still safe to call |
103 |
psiconv_free_{paragraph,character}_layout_list on it (and that |
104 |
is the only safe thing to do!) */ |
105 |
|
106 |
extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf, |
107 |
int lev, psiconv_u32 off, int *length, |
108 |
psiconv_paragraph_layout result); |
109 |
|
110 |
extern int psiconv_parse_character_layout_list(const psiconv_buffer buf, |
111 |
int lev, psiconv_u32 off, int *length, |
112 |
psiconv_character_layout result); |
113 |
|
114 |
|
115 |
/* **************** |
116 |
* parse_page.c * |
117 |
**************** */ |
118 |
|
119 |
extern int psiconv_parse_page_header(const psiconv_buffer buf,int lev, |
120 |
psiconv_u32 off, int *length, |
121 |
psiconv_page_header *result); |
122 |
|
123 |
extern int psiconv_parse_page_layout_section(const psiconv_buffer buf,int lev, |
124 |
psiconv_u32 off, int *length, |
125 |
psiconv_page_layout_section *result); |
126 |
|
127 |
/* ****************** |
128 |
* parse_common.c * |
129 |
****************** */ |
130 |
|
131 |
extern int psiconv_parse_header_section(const psiconv_buffer buf,int lev, |
132 |
psiconv_u32 off, int *length, |
133 |
psiconv_header_section *result); |
134 |
|
135 |
extern int psiconv_parse_section_table_section(const psiconv_buffer buf, |
136 |
int lev, psiconv_u32 off, |
137 |
int *length, |
138 |
psiconv_section_table_section *result); |
139 |
|
140 |
extern int psiconv_parse_application_id_section(const psiconv_buffer buf, |
141 |
int lev, psiconv_u32 off, int *length, |
142 |
psiconv_application_id_section *result); |
143 |
|
144 |
extern int psiconv_parse_text_section(const psiconv_buffer buf,int lev, |
145 |
psiconv_u32 off, int *length, |
146 |
psiconv_text_and_layout *result); |
147 |
|
148 |
extern int psiconv_parse_styled_layout_section(const psiconv_buffer buf, |
149 |
int lev,psiconv_u32 off, |
150 |
int *length, |
151 |
psiconv_text_and_layout result, |
152 |
psiconv_word_styles_section styles); |
153 |
extern int psiconv_parse_styleless_layout_section(const psiconv_buffer buf, |
154 |
int lev,psiconv_u32 off, |
155 |
int *length, |
156 |
psiconv_text_and_layout result, |
157 |
psiconv_character_layout base_char, |
158 |
psiconv_paragraph_layout base_para); |
159 |
|
160 |
|
161 |
/* ****************** |
162 |
* parse_texted.c * |
163 |
****************** */ |
164 |
|
165 |
extern int psiconv_parse_texted_section(const psiconv_buffer buf,int lev, |
166 |
psiconv_u32 off, int *length, |
167 |
psiconv_texted_section *result, |
168 |
psiconv_character_layout base_char, |
169 |
psiconv_paragraph_layout base_para); |
170 |
|
171 |
|
172 |
/* **************** |
173 |
* parse_word.c * |
174 |
**************** */ |
175 |
|
176 |
extern int psiconv_parse_word_status_section(const psiconv_buffer buf, int lev, |
177 |
psiconv_u32 off, int *length, |
178 |
psiconv_word_status_section *result); |
179 |
|
180 |
extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev, |
181 |
psiconv_u32 off, int *length, |
182 |
psiconv_word_styles_section *result); |
183 |
|
184 |
|
185 |
/* ***************** |
186 |
* parse_image.c * |
187 |
***************** */ |
188 |
|
189 |
extern int psiconv_parse_paint_data_section(const psiconv_buffer buf,int lev, |
190 |
psiconv_u32 off, int *length, |
191 |
int isclipart, |
192 |
psiconv_paint_data_section *result); |
193 |
|
194 |
extern int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev, |
195 |
psiconv_u32 off, int *length, |
196 |
psiconv_jumptable_section *result); |
197 |
extern int psiconv_parse_sketch_section(const psiconv_buffer buf, int lev, |
198 |
psiconv_u32 off, int *length, int is_object, |
199 |
psiconv_sketch_section *result); |
200 |
extern int psiconv_parse_clipart_section(const psiconv_buffer buf, int lev, |
201 |
psiconv_u32 off, int *length, |
202 |
psiconv_clipart_section *result); |
203 |
|
204 |
|
205 |
|
206 |
|
207 |
|
208 |
/* **************** |
209 |
* parse_driver.c * |
210 |
**************** */ |
211 |
|
212 |
extern int psiconv_parse_texted_file(const psiconv_buffer buf,int lev, |
213 |
psiconv_u32 off, psiconv_texted_f *result); |
214 |
|
215 |
extern int psiconv_parse_word_file(const psiconv_buffer buf,int lev, |
216 |
psiconv_u32 off, psiconv_word_f *result); |
217 |
|
218 |
extern int psiconv_parse_mbm_file(const psiconv_buffer buf,int lev, |
219 |
psiconv_u32 off, psiconv_mbm_f *result); |
220 |
|
221 |
extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev, |
222 |
psiconv_u32 off, psiconv_sketch_f *result); |
223 |
|
224 |
extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev, |
225 |
psiconv_u32 off, psiconv_clipart_f *result); |
226 |
#ifdef __cplusplus |
227 |
} |
228 |
#endif /* __cplusplus */ |
229 |
|
230 |
#endif /* PSICONV_PARSE_ROUTINES_H */ |