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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 62 Revision 121
1/* 1/*
2 parse_routines.h - Part of psiconv, a PSION 5 file formats converter 2 parse_routines.h - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 1999, 2000 Frodo Looijaard <frodol@dds.nl>
4 4
5 This program is free software; you can redistribute it and/or modify 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 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 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
18*/ 18*/
19 19
20#ifndef PSICONV_PARSE_ROUTINES_H 20#ifndef PSICONV_PARSE_ROUTINES_H
21#define PSICONV_PARSE_ROUTINES_H 21#define PSICONV_PARSE_ROUTINES_H
22 22
23#include <psiconv/general.h>
23#include <psiconv/parse.h> 24#include <psiconv/data.h>
25#include <psiconv/buffer.h>
26#include <psiconv/common.h>
24 27
25#ifdef __cplusplus 28#ifdef __cplusplus
26extern "C" { 29extern "C" {
27#endif /* __cplusplus */ 30#endif /* __cplusplus */
28 31
29 32
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. */
37extern char *psiconv_make_printable(const char *s);
38
39/* **************
40 * checkuid.c *
41 ************** */
42
43extern psiconv_u32 psiconv_checkuid(psiconv_u32 uid1,
44 psiconv_u32 uid2,psiconv_u32 uid3);
45
46/* ****************** 33/* ******************
47 * parse_simple.c * 34 * parse_simple.c *
48 ****************** */ 35 ****************** */
49 36
50extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev, 37extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev,
51 psiconv_u32 off); 38 psiconv_u32 off, int *status);
52extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev, 39extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev,
53 psiconv_u32 off); 40 psiconv_u32 off, int *status);
54extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev, 41extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev,
55 psiconv_u32 off); 42 psiconv_u32 off, int *status);
56 43
57extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev, 44extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev,
58 psiconv_u32 off, int *length); 45 psiconv_u32 off, int *length, int *status);
59extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev, 46extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev,
60 psiconv_u32 off, int *length); 47 psiconv_u32 off, int *length, int *status);
61extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev, 48extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev,
62 psiconv_u32 off, int *length); 49 psiconv_u32 off, int *length,
50 int *status);
63extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev, 51extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev,
64 psiconv_u32 off, int *length); 52 psiconv_u32 off, int *length,
53 int *status);
65extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev, 54extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev,
66 psiconv_u32 off,int *length); 55 psiconv_u32 off,int *length,
56 int *status);
57extern psiconv_string_t psiconv_read_short_string(const psiconv_buffer buf,
58 int lev,psiconv_u32 off,
59 int *length,int *status);
67 60
68extern int psiconv_parse_bool(const psiconv_buffer buf, int lev, 61extern int psiconv_parse_bool(const psiconv_buffer buf, int lev,
69 psiconv_u32 off, int *length, 62 psiconv_u32 off, int *length,
70 psiconv_bool_t *result); 63 psiconv_bool_t *result);
71 64
65extern psiconv_float_t psiconv_read_float(const psiconv_buffer buf, int lev,
66 psiconv_u32 off, int *length, int *status);
67
68
72 69
73/* ****************** 70/* ******************
74 * parse_layout.c * 71 * parse_layout.c *
75 ****************** */ 72 ****************** */
76 73
91 psiconv_bullet *result); 88 psiconv_bullet *result);
92 89
93extern int psiconv_parse_tab(const psiconv_buffer buf, int lev, 90extern int psiconv_parse_tab(const psiconv_buffer buf, int lev,
94 psiconv_u32 off, int *length, 91 psiconv_u32 off, int *length,
95 psiconv_tab *result); 92 psiconv_tab *result);
93
94/* Note: the next two are special, because they modify an existing
95 layout structure! If it exits due to an unexpected error, part
96 of the structure may be modified, but it is still safe to call
97 psiconv_free_{paragraph,character}_layout_list on it (and that
98 is the only safe thing to do!) */
96 99
97extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf, 100extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf,
98 int lev, psiconv_u32 off, int *length, 101 int lev, psiconv_u32 off, int *length,
99 psiconv_paragraph_layout result); 102 psiconv_paragraph_layout result);
100 103
135extern int psiconv_parse_text_section(const psiconv_buffer buf,int lev, 138extern int psiconv_parse_text_section(const psiconv_buffer buf,int lev,
136 psiconv_u32 off, int *length, 139 psiconv_u32 off, int *length,
137 psiconv_text_and_layout *result); 140 psiconv_text_and_layout *result);
138 141
139extern int psiconv_parse_styled_layout_section(const psiconv_buffer buf, 142extern int psiconv_parse_styled_layout_section(const psiconv_buffer buf,
140 int lev,psiconv_u32 off, 143 int lev,psiconv_u32 off,
141 int *length, 144 int *length,
142 psiconv_text_and_layout result, 145 psiconv_text_and_layout result,
143 psiconv_word_styles_section styles); 146 const psiconv_word_styles_section styles);
144extern int psiconv_parse_styleless_layout_section(const psiconv_buffer buf, 147extern int psiconv_parse_styleless_layout_section(const psiconv_buffer buf,
145 int lev,psiconv_u32 off, 148 int lev,psiconv_u32 off,
146 int *length, 149 int *length,
147 psiconv_text_and_layout result, 150 psiconv_text_and_layout result,
148 psiconv_character_layout base_char, 151 const psiconv_character_layout base_char,
149 psiconv_paragraph_layout base_para); 152 const psiconv_paragraph_layout base_para);
150 153
151 154
152/* ****************** 155/* ******************
153 * parse_texted.c * 156 * parse_texted.c *
154 ****************** */ 157 ****************** */
169 psiconv_word_status_section *result); 172 psiconv_word_status_section *result);
170 173
171extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev, 174extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev,
172 psiconv_u32 off, int *length, 175 psiconv_u32 off, int *length,
173 psiconv_word_styles_section *result); 176 psiconv_word_styles_section *result);
177
178
179/* *****************
180 * parse_sheet.c *
181 ***************** */
182
183extern int psiconv_parse_sheet_status_section(const psiconv_buffer buf, int lev,
184 psiconv_u32 off, int *length,
185 psiconv_sheet_status_section *result);
186
187extern int psiconv_parse_sheet_formula_table(const psiconv_buffer buf, int lev,
188 psiconv_u32 off, int *length,
189 psiconv_formula_list *result);
190
191extern int psiconv_parse_formula(const psiconv_buffer buf, int lev,
192 psiconv_u32 off, int *length,
193 psiconv_formula *result);
194
195extern int psiconv_parse_sheet_workbook_section(const psiconv_buffer buf,
196 int lev,
197 psiconv_u32 off, int *length,
198 psiconv_sheet_workbook_section *result);
199extern int psiconv_parse_sheet_cell(const psiconv_buffer buf, int lev,
200 psiconv_u32 off, int *length,
201 psiconv_sheet_cell *result,
202 const psiconv_sheet_cell_layout default_layout);
203extern int psiconv_parse_sheet_cell_list(const psiconv_buffer buf, int lev,
204 psiconv_u32 off, int *length,
205 psiconv_sheet_cell_list *result,
206 const psiconv_sheet_cell_layout default_layout);
207extern int psiconv_parse_sheet_worksheet_list( const psiconv_buffer buf,
208 int lev,
209 psiconv_u32 off, int *length,
210 psiconv_sheet_worksheet_list *result);
211extern int psiconv_parse_sheet_worksheet(const psiconv_buffer buf, int lev,
212 psiconv_u32 off, int *length,
213 psiconv_sheet_worksheet *result);
214extern int psiconv_parse_sheet_numberformat(const psiconv_buffer buf, int lev,
215 psiconv_u32 off, int *length,
216 psiconv_sheet_numberformat result);
217extern int psiconv_parse_sheet_cell_layout(const psiconv_buffer buf, int lev,
218 psiconv_u32 off, int *length,
219 psiconv_sheet_cell_layout result);
220
221
222
223
224
225
174 226
175 227
176/* ***************** 228/* *****************
177 * parse_image.c * 229 * parse_image.c *
178 ***************** */ 230 ***************** */
212extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev, 264extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev,
213 psiconv_u32 off, psiconv_sketch_f *result); 265 psiconv_u32 off, psiconv_sketch_f *result);
214 266
215extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev, 267extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev,
216 psiconv_u32 off, psiconv_clipart_f *result); 268 psiconv_u32 off, psiconv_clipart_f *result);
269extern int psiconv_parse_sheet_file(const psiconv_buffer buf,int lev,
270 psiconv_u32 off, psiconv_sheet_f *result);
271
217#ifdef __cplusplus 272#ifdef __cplusplus
218} 273}
219#endif /* __cplusplus */ 274#endif /* __cplusplus */
220 275
221#endif /* PSICONV_PARSE_ROUTINES_H */ 276#endif /* PSICONV_PARSE_ROUTINES_H */

Legend:
Removed from v.62  
changed lines
  Added in v.121

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