--- psiconv/trunk/lib/psiconv/parse_routines.h 2001/01/17 12:04:12 95 +++ psiconv/trunk/lib/psiconv/parse_routines.h 2001/07/01 13:14:19 121 @@ -54,11 +54,18 @@ extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev, psiconv_u32 off,int *length, int *status); +extern psiconv_string_t psiconv_read_short_string(const psiconv_buffer buf, + int lev,psiconv_u32 off, + int *length,int *status); extern int psiconv_parse_bool(const psiconv_buffer buf, int lev, psiconv_u32 off, int *length, psiconv_bool_t *result); +extern psiconv_float_t psiconv_read_float(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, int *status); + + /* ****************** * parse_layout.c * @@ -177,10 +184,45 @@ psiconv_u32 off, int *length, psiconv_sheet_status_section *result); +extern int psiconv_parse_sheet_formula_table(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_formula_list *result); + +extern int psiconv_parse_formula(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_formula *result); + extern int psiconv_parse_sheet_workbook_section(const psiconv_buffer buf, int lev, psiconv_u32 off, int *length, psiconv_sheet_workbook_section *result); +extern int psiconv_parse_sheet_cell(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_sheet_cell *result, + const psiconv_sheet_cell_layout default_layout); +extern int psiconv_parse_sheet_cell_list(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_sheet_cell_list *result, + const psiconv_sheet_cell_layout default_layout); +extern int psiconv_parse_sheet_worksheet_list( const psiconv_buffer buf, + int lev, + psiconv_u32 off, int *length, + psiconv_sheet_worksheet_list *result); +extern int psiconv_parse_sheet_worksheet(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_sheet_worksheet *result); +extern int psiconv_parse_sheet_numberformat(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_sheet_numberformat result); +extern int psiconv_parse_sheet_cell_layout(const psiconv_buffer buf, int lev, + psiconv_u32 off, int *length, + psiconv_sheet_cell_layout result); + + + + + + /* *****************