/[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 2 Revision 63
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 "data.h" 23#include <psiconv/parse.h>
24#include "parse.h" 24
25#ifdef __cplusplus
26extern "C" {
27#endif /* __cplusplus */
28
25 29
26/* *************** 30/* ***************
27 * parse_aux.c * 31 * misc.c *
28 *************** */ 32 *************** */
29
30/* These functions print error, warning, progress and debug information to
31 stderr */
32extern void psiconv_fatal(int level, psiconv_u32 off, const char *format,...);
33extern void psiconv_warn(int level, psiconv_u32 off, const char *format,...);
34extern void psiconv_progress(int level, psiconv_u32 off,
35 const char *format,...);
36extern void psiconv_debug(int level, psiconv_u32 off, const char *format,...);
37 33
38/* This function returns a copy of a string, that contains no ASCII codes 34/* This function returns a copy of a string, that contains no ASCII codes
39 that are not printable. You should free this string yourself when you are 35 that are not printable. You should free this string yourself when you are
40 done with it. */ 36 done with it. Returns NULL if there is not enough memory left. */
41extern char *psiconv_make_printable(const char *s); 37extern char *psiconv_make_printable(const char *s);
42 38
43/* ************** 39/* **************
44 * checkuid.c * 40 * checkuid.c *
45 ************** */ 41 ************** */
174 170
175extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev, 171extern int psiconv_parse_word_styles_section(const psiconv_buffer buf, int lev,
176 psiconv_u32 off, int *length, 172 psiconv_u32 off, int *length,
177 psiconv_word_styles_section *result); 173 psiconv_word_styles_section *result);
178 174
175
176/* *****************
177 * parse_image.c *
178 ***************** */
179
180extern int psiconv_parse_paint_data_section(const psiconv_buffer buf,int lev,
181 psiconv_u32 off, int *length,
182 int isclipart,
183 psiconv_paint_data_section *result);
184
185extern int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev,
186 psiconv_u32 off, int *length,
187 psiconv_jumptable_section *result);
188extern int psiconv_parse_sketch_section(const psiconv_buffer buf, int lev,
189 psiconv_u32 off, int *length, int is_object,
190 psiconv_sketch_section *result);
191extern int psiconv_parse_clipart_section(const psiconv_buffer buf, int lev,
192 psiconv_u32 off, int *length,
193 psiconv_clipart_section *result);
194
195
196
197
198
179/* **************** 199/* ****************
180 * parse_driver.c * 200 * parse_driver.c *
181 **************** */ 201 **************** */
182 202
183extern int psiconv_parse_texted_file(const psiconv_buffer buf,int lev, 203extern int psiconv_parse_texted_file(const psiconv_buffer buf,int lev,
184 psiconv_u32 off, psiconv_texted_f *result); 204 psiconv_u32 off, psiconv_texted_f *result);
185 205
186extern int psiconv_parse_word_file(const psiconv_buffer buf,int lev, 206extern int psiconv_parse_word_file(const psiconv_buffer buf,int lev,
187 psiconv_u32 off, psiconv_word_f *result); 207 psiconv_u32 off, psiconv_word_f *result);
188 208
209extern int psiconv_parse_mbm_file(const psiconv_buffer buf,int lev,
210 psiconv_u32 off, psiconv_mbm_f *result);
211
212extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev,
213 psiconv_u32 off, psiconv_sketch_f *result);
214
215extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev,
216 psiconv_u32 off, psiconv_clipart_f *result);
217#ifdef __cplusplus
218}
219#endif /* __cplusplus */
189 220
190#endif /* PSICONV_PARSE_ROUTINES_H */ 221#endif /* PSICONV_PARSE_ROUTINES_H */

Legend:
Removed from v.2  
changed lines
  Added in v.63

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