/[public]/psiconv/trunk/lib/psiconv/parse_routines.h
ViewVC logotype

Contents of /psiconv/trunk/lib/psiconv/parse_routines.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 101 - (show annotations)
Tue Jan 30 23:57:28 2001 UTC (23 years, 2 months ago) by frodo
File MIME type: text/plain
File size: 10824 byte(s)
(Frodo) Added floats

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/general.h>
24 #include <psiconv/data.h>
25 #include <psiconv/buffer.h>
26 #include <psiconv/common.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32
33 /* ******************
34 * parse_simple.c *
35 ****************** */
36
37 extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev,
38 psiconv_u32 off, int *status);
39 extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev,
40 psiconv_u32 off, int *status);
41 extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev,
42 psiconv_u32 off, int *status);
43
44 extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev,
45 psiconv_u32 off, int *length, int *status);
46 extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev,
47 psiconv_u32 off, int *length, int *status);
48 extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev,
49 psiconv_u32 off, int *length,
50 int *status);
51 extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev,
52 psiconv_u32 off, int *length,
53 int *status);
54 extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev,
55 psiconv_u32 off,int *length,
56 int *status);
57
58 extern int psiconv_parse_bool(const psiconv_buffer buf, int lev,
59 psiconv_u32 off, int *length,
60 psiconv_bool_t *result);
61
62 extern psiconv_float_t psiconv_read_float(const psiconv_buffer buf, int lev,
63 psiconv_u32 off, int *length, int *status);
64
65
66
67 /* ******************
68 * parse_layout.c *
69 ****************** */
70
71 extern int psiconv_parse_color(const psiconv_buffer buf, int lev,
72 psiconv_u32 off, int *length,
73 psiconv_color *result);
74
75 extern int psiconv_parse_font(const psiconv_buffer buf, int lev,
76 psiconv_u32 off, int *length,
77 psiconv_font *result);
78
79 extern int psiconv_parse_border(const psiconv_buffer buf,int lev,
80 psiconv_u32 off, int *length,
81 psiconv_border *result);
82
83 extern int psiconv_parse_bullet(const psiconv_buffer buf,int lev,
84 psiconv_u32 off, int *length,
85 psiconv_bullet *result);
86
87 extern int psiconv_parse_tab(const psiconv_buffer buf, int lev,
88 psiconv_u32 off, int *length,
89 psiconv_tab *result);
90
91 /* Note: the next two are special, because they modify an existing
92 layout structure! If it exits due to an unexpected error, part
93 of the structure may be modified, but it is still safe to call
94 psiconv_free_{paragraph,character}_layout_list on it (and that
95 is the only safe thing to do!) */
96
97 extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf,
98 int lev, psiconv_u32 off, int *length,
99 psiconv_paragraph_layout result);
100
101 extern int psiconv_parse_character_layout_list(const psiconv_buffer buf,
102 int lev, psiconv_u32 off, int *length,
103 psiconv_character_layout result);
104
105
106 /* ****************
107 * parse_page.c *
108 **************** */
109
110 extern int psiconv_parse_page_header(const psiconv_buffer buf,int lev,
111 psiconv_u32 off, int *length,
112 psiconv_page_header *result);
113
114 extern int psiconv_parse_page_layout_section(const psiconv_buffer buf,int lev,
115 psiconv_u32 off, int *length,
116 psiconv_page_layout_section *result);
117
118 /* ******************
119 * parse_common.c *
120 ****************** */
121
122 extern int psiconv_parse_header_section(const psiconv_buffer buf,int lev,
123 psiconv_u32 off, int *length,
124 psiconv_header_section *result);
125
126 extern int psiconv_parse_section_table_section(const psiconv_buffer buf,
127 int lev, psiconv_u32 off,
128 int *length,
129 psiconv_section_table_section *result);
130
131 extern int psiconv_parse_application_id_section(const psiconv_buffer buf,
132 int lev, psiconv_u32 off, int *length,
133 psiconv_application_id_section *result);
134
135 extern int psiconv_parse_text_section(const psiconv_buffer buf,int lev,
136 psiconv_u32 off, int *length,
137 psiconv_text_and_layout *result);
138
139 extern int psiconv_parse_styled_layout_section(const psiconv_buffer buf,
140 int lev,psiconv_u32 off,
141 int *length,
142 psiconv_text_and_layout result,
143 const psiconv_word_styles_section styles);
144 extern int psiconv_parse_styleless_layout_section(const psiconv_buffer buf,
145 int lev,psiconv_u32 off,
146 int *length,
147 psiconv_text_and_layout result,
148 const psiconv_character_layout base_char,
149 const psiconv_paragraph_layout base_para);
150
151
152 /* ******************
153 * parse_texted.c *
154 ****************** */
155
156 extern int psiconv_parse_texted_section(const psiconv_buffer buf,int lev,
157 psiconv_u32 off, int *length,
158 psiconv_texted_section *result,
159 psiconv_character_layout base_char,
160 psiconv_paragraph_layout base_para);
161
162
163 /* ****************
164 * parse_word.c *
165 **************** */
166
167 extern int psiconv_parse_word_status_section(const psiconv_buffer buf, int lev,
168 psiconv_u32 off, int *length,
169 psiconv_word_status_section *result);
170
171 extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev,
172 psiconv_u32 off, int *length,
173 psiconv_word_styles_section *result);
174
175
176 /* *****************
177 * parse_sheet.c *
178 ***************** */
179
180 extern int psiconv_parse_sheet_status_section(const psiconv_buffer buf, int lev,
181 psiconv_u32 off, int *length,
182 psiconv_sheet_status_section *result);
183
184 extern int psiconv_parse_sheet_formula_table(const psiconv_buffer buf, int lev,
185 psiconv_u32 off, int *length,
186 psiconv_formula_list *result);
187
188 extern int psiconv_parse_formula(const psiconv_buffer buf, int lev,
189 psiconv_u32 off, int *length,
190 psiconv_formula *result);
191
192 extern int psiconv_parse_sheet_workbook_section(const psiconv_buffer buf,
193 int lev,
194 psiconv_u32 off, int *length,
195 psiconv_sheet_workbook_section *result);
196
197
198 /* *****************
199 * parse_image.c *
200 ***************** */
201
202 extern int psiconv_parse_paint_data_section(const psiconv_buffer buf,int lev,
203 psiconv_u32 off, int *length,
204 int isclipart,
205 psiconv_paint_data_section *result);
206
207 extern int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev,
208 psiconv_u32 off, int *length,
209 psiconv_jumptable_section *result);
210 extern int psiconv_parse_sketch_section(const psiconv_buffer buf, int lev,
211 psiconv_u32 off, int *length, int is_object,
212 psiconv_sketch_section *result);
213 extern int psiconv_parse_clipart_section(const psiconv_buffer buf, int lev,
214 psiconv_u32 off, int *length,
215 psiconv_clipart_section *result);
216
217
218
219
220
221 /* ****************
222 * parse_driver.c *
223 **************** */
224
225 extern int psiconv_parse_texted_file(const psiconv_buffer buf,int lev,
226 psiconv_u32 off, psiconv_texted_f *result);
227
228 extern int psiconv_parse_word_file(const psiconv_buffer buf,int lev,
229 psiconv_u32 off, psiconv_word_f *result);
230
231 extern int psiconv_parse_mbm_file(const psiconv_buffer buf,int lev,
232 psiconv_u32 off, psiconv_mbm_f *result);
233
234 extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev,
235 psiconv_u32 off, psiconv_sketch_f *result);
236
237 extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev,
238 psiconv_u32 off, psiconv_clipart_f *result);
239 extern int psiconv_parse_sheet_file(const psiconv_buffer buf,int lev,
240 psiconv_u32 off, psiconv_sheet_f *result);
241
242 #ifdef __cplusplus
243 }
244 #endif /* __cplusplus */
245
246 #endif /* PSICONV_PARSE_ROUTINES_H */

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26