/[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 111 Revision 129
38 psiconv_u32 off, int *status); 38 psiconv_u32 off, int *status);
39extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev, 39extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev,
40 psiconv_u32 off, int *status); 40 psiconv_u32 off, int *status);
41extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev, 41extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev,
42 psiconv_u32 off, int *status); 42 psiconv_u32 off, int *status);
43extern psiconv_s32 psiconv_read_sint(const psiconv_buffer buf,int lev,
44 psiconv_u32 off, int *length, int *status);
43 45
44extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev, 46extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev,
45 psiconv_u32 off, int *length, int *status); 47 psiconv_u32 off, int *length, int *status);
46extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev, 48extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev,
47 psiconv_u32 off, int *length, int *status); 49 psiconv_u32 off, int *length, int *status);
182 184
183extern int psiconv_parse_sheet_status_section(const psiconv_buffer buf, int lev, 185extern int psiconv_parse_sheet_status_section(const psiconv_buffer buf, int lev,
184 psiconv_u32 off, int *length, 186 psiconv_u32 off, int *length,
185 psiconv_sheet_status_section *result); 187 psiconv_sheet_status_section *result);
186 188
187extern int psiconv_parse_sheet_formula_table(const psiconv_buffer buf, int lev, 189extern int psiconv_parse_sheet_formula_list(const psiconv_buffer buf, int lev,
188 psiconv_u32 off, int *length, 190 psiconv_u32 off, int *length,
189 psiconv_formula_list *result); 191 psiconv_formula_list *result);
190 192
191extern int psiconv_parse_formula(const psiconv_buffer buf, int lev, 193extern int psiconv_parse_formula(const psiconv_buffer buf, int lev,
192 psiconv_u32 off, int *length, 194 psiconv_u32 off, int *length,
195extern int psiconv_parse_sheet_workbook_section(const psiconv_buffer buf, 197extern int psiconv_parse_sheet_workbook_section(const psiconv_buffer buf,
196 int lev, 198 int lev,
197 psiconv_u32 off, int *length, 199 psiconv_u32 off, int *length,
198 psiconv_sheet_workbook_section *result); 200 psiconv_sheet_workbook_section *result);
199extern int psiconv_parse_sheet_cell(const psiconv_buffer buf, int lev, 201extern int psiconv_parse_sheet_cell(const psiconv_buffer buf, int lev,
200 psiconv_u32 off, int *length, 202 psiconv_u32 off, int *length,
201 psiconv_sheet_cell *result); 203 psiconv_sheet_cell *result,
204 const psiconv_sheet_cell_layout default_layout,
205 const psiconv_sheet_line_list row_default_layouts,
206 const psiconv_sheet_line_list col_default_layouts);
207
202extern int psiconv_parse_sheet_cell_list(const psiconv_buffer buf, int lev, 208extern int psiconv_parse_sheet_cell_list(const psiconv_buffer buf, int lev,
203 psiconv_u32 off, int *length, 209 psiconv_u32 off, int *length,
204 psiconv_sheet_cell_list *result); 210 psiconv_sheet_cell_list *result,
211 const psiconv_sheet_cell_layout default_layout,
212 const psiconv_sheet_line_list row_default_layouts,
213 const psiconv_sheet_line_list col_default_layouts);
205extern int psiconv_parse_sheet_worksheet_list( const psiconv_buffer buf, 214extern int psiconv_parse_sheet_worksheet_list( const psiconv_buffer buf,
206 int lev, 215 int lev,
207 psiconv_u32 off, int *length, 216 psiconv_u32 off, int *length,
208 psiconv_sheet_worksheet_list *result); 217 psiconv_sheet_worksheet_list *result);
209extern int psiconv_parse_sheet_worksheet(const psiconv_buffer buf, int lev, 218extern int psiconv_parse_sheet_worksheet(const psiconv_buffer buf, int lev,
210 psiconv_u32 off, int *length, 219 psiconv_u32 off, int *length,
211 psiconv_sheet_worksheet *result); 220 psiconv_sheet_worksheet *result);
212extern int psiconv_parse_sheet_numberformat(const psiconv_buffer buf, int lev, 221extern int psiconv_parse_sheet_numberformat(const psiconv_buffer buf, int lev,
213 psiconv_u32 off, int *length, 222 psiconv_u32 off, int *length,
214 psiconv_sheet_numberformat *result); 223 psiconv_sheet_numberformat result);
215extern int psiconv_parse_sheet_cell_layout(const psiconv_buffer buf, int lev, 224extern int psiconv_parse_sheet_cell_layout(const psiconv_buffer buf, int lev,
216 psiconv_u32 off, int *length, 225 psiconv_u32 off, int *length,
217 psiconv_sheet_cell_layout *result); 226 psiconv_sheet_cell_layout result);
218 227extern int psiconv_parse_sheet_line(const psiconv_buffer buf, int lev,
219 228 psiconv_u32 off, int *length,
220 229 psiconv_sheet_line *result,
221 230 const psiconv_sheet_cell_layout default_layout);
222 231extern int psiconv_parse_sheet_line_list(const psiconv_buffer buf, int lev,
223 232 psiconv_u32 off, int *length,
233 psiconv_sheet_line_list *result,
234 const psiconv_sheet_cell_layout default_layout);
235extern int psiconv_parse_sheet_name_section(const psiconv_buffer buf, int lev,
236 psiconv_u32 off, int *length,
237 psiconv_sheet_name_section *result);
238extern int psiconv_parse_sheet_info_section(const psiconv_buffer buf, int lev,
239 psiconv_u32 off, int *length,
240 psiconv_sheet_info_section *result);
241extern int psiconv_parse_sheet_variable(const psiconv_buffer buf, int lev,
242 psiconv_u32 off, int *length,
243 psiconv_sheet_variable *result);
244extern int psiconv_parse_sheet_variable_list(const psiconv_buffer buf, int lev,
245 psiconv_u32 off, int *length,
246 psiconv_sheet_variable_list *result);
224 247
225 248
226/* ***************** 249/* *****************
227 * parse_image.c * 250 * parse_image.c *
228 ***************** */ 251 ***************** */

Legend:
Removed from v.111  
changed lines
  Added in v.129

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