/[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 43 Revision 64
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 ************** */
50/* ****************** 46/* ******************
51 * parse_simple.c * 47 * parse_simple.c *
52 ****************** */ 48 ****************** */
53 49
54extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev, 50extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev,
55 psiconv_u32 off); 51 psiconv_u32 off, int *status);
56extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev, 52extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev,
57 psiconv_u32 off); 53 psiconv_u32 off, int *status);
58extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev, 54extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev,
59 psiconv_u32 off); 55 psiconv_u32 off, int *status);
60 56
61extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev, 57extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev,
62 psiconv_u32 off, int *length); 58 psiconv_u32 off, int *length, int *status);
63extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev, 59extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev,
64 psiconv_u32 off, int *length); 60 psiconv_u32 off, int *length, int *status);
65extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev, 61extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev,
66 psiconv_u32 off, int *length); 62 psiconv_u32 off, int *length,
63 int *status);
67extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev, 64extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev,
68 psiconv_u32 off, int *length); 65 psiconv_u32 off, int *length,
66 int *status);
69extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev, 67extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev,
70 psiconv_u32 off,int *length); 68 psiconv_u32 off,int *length,
69 int *status);
71 70
72extern int psiconv_parse_bool(const psiconv_buffer buf, int lev, 71extern int psiconv_parse_bool(const psiconv_buffer buf, int lev,
73 psiconv_u32 off, int *length, 72 psiconv_u32 off, int *length,
74 psiconv_bool_t *result); 73 psiconv_bool_t *result);
75 74
95 psiconv_bullet *result); 94 psiconv_bullet *result);
96 95
97extern int psiconv_parse_tab(const psiconv_buffer buf, int lev, 96extern int psiconv_parse_tab(const psiconv_buffer buf, int lev,
98 psiconv_u32 off, int *length, 97 psiconv_u32 off, int *length,
99 psiconv_tab *result); 98 psiconv_tab *result);
99
100/* Note: the next two are special, because they modify an existing
101 layout structure! If it exits due to an unexpected error, part
102 of the structure may be modified, but it is still safe to call
103 psiconv_free_{paragraph,character}_layout_list on it (and that
104 is the only safe thing to do!) */
100 105
101extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf, 106extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf,
102 int lev, psiconv_u32 off, int *length, 107 int lev, psiconv_u32 off, int *length,
103 psiconv_paragraph_layout result); 108 psiconv_paragraph_layout result);
104 109
180/* ***************** 185/* *****************
181 * parse_image.c * 186 * parse_image.c *
182 ***************** */ 187 ***************** */
183 188
184extern int psiconv_parse_paint_data_section(const psiconv_buffer buf,int lev, 189extern int psiconv_parse_paint_data_section(const psiconv_buffer buf,int lev,
185 psiconv_u32 off, int *length, 190 psiconv_u32 off, int *length,
191 int isclipart,
186 psiconv_paint_data_section *result); 192 psiconv_paint_data_section *result);
187 193
188extern int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev, 194extern int psiconv_parse_jumptable_section(const psiconv_buffer buf,int lev,
189 psiconv_u32 off, int *length, 195 psiconv_u32 off, int *length,
190 psiconv_jumptable_section *result); 196 psiconv_jumptable_section *result);
215extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev, 221extern int psiconv_parse_sketch_file(const psiconv_buffer buf,int lev,
216 psiconv_u32 off, psiconv_sketch_f *result); 222 psiconv_u32 off, psiconv_sketch_f *result);
217 223
218extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev, 224extern int psiconv_parse_clipart_file(const psiconv_buffer buf,int lev,
219 psiconv_u32 off, psiconv_clipart_f *result); 225 psiconv_u32 off, psiconv_clipart_f *result);
226#ifdef __cplusplus
227}
228#endif /* __cplusplus */
220 229
221#endif /* PSICONV_PARSE_ROUTINES_H */ 230#endif /* PSICONV_PARSE_ROUTINES_H */

Legend:
Removed from v.43  
changed lines
  Added in v.64

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