/[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 55 Revision 71
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/general.h>
24#include "parse.h" 24#include <psiconv/common.h>
25#include <psiconv/data.h>
25 26
26#ifdef __cplusplus 27#ifdef __cplusplus
27extern "C" { 28extern "C" {
28#endif /* __cplusplus */ 29#endif /* __cplusplus */
29 30
30 31
31/* ***************
32 * parse_aux.c *
33 *************** */
34
35/* These functions print error, warning, progress and debug information to
36 stderr */
37extern void psiconv_fatal(int level, psiconv_u32 off, const char *format,...);
38extern void psiconv_warn(int level, psiconv_u32 off, const char *format,...);
39extern void psiconv_progress(int level, psiconv_u32 off,
40 const char *format,...);
41extern void psiconv_debug(int level, psiconv_u32 off, const char *format,...);
42
43/* This function returns a copy of a string, that contains no ASCII codes
44 that are not printable. You should free this string yourself when you are
45 done with it. */
46extern char *psiconv_make_printable(const char *s);
47
48/* **************
49 * checkuid.c *
50 ************** */
51
52extern psiconv_u32 psiconv_checkuid(psiconv_u32 uid1,
53 psiconv_u32 uid2,psiconv_u32 uid3);
54
55/* ****************** 32/* ******************
56 * parse_simple.c * 33 * parse_simple.c *
57 ****************** */ 34 ****************** */
58 35
59extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev, 36extern psiconv_u8 psiconv_read_u8(const psiconv_buffer buf,int lev,
60 psiconv_u32 off); 37 psiconv_u32 off, int *status);
61extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev, 38extern psiconv_u16 psiconv_read_u16(const psiconv_buffer buf,int lev,
62 psiconv_u32 off); 39 psiconv_u32 off, int *status);
63extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev, 40extern psiconv_u32 psiconv_read_u32(const psiconv_buffer buf,int lev,
64 psiconv_u32 off); 41 psiconv_u32 off, int *status);
65 42
66extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev, 43extern psiconv_S_t psiconv_read_S(const psiconv_buffer buf, int lev,
67 psiconv_u32 off, int *length); 44 psiconv_u32 off, int *length, int *status);
68extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev, 45extern psiconv_X_t psiconv_read_X(const psiconv_buffer buf, int lev,
69 psiconv_u32 off, int *length); 46 psiconv_u32 off, int *length, int *status);
70extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev, 47extern psiconv_length_t psiconv_read_length(const psiconv_buffer buf, int lev,
71 psiconv_u32 off, int *length); 48 psiconv_u32 off, int *length,
49 int *status);
72extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev, 50extern psiconv_size_t psiconv_read_size (const psiconv_buffer buf, int lev,
73 psiconv_u32 off, int *length); 51 psiconv_u32 off, int *length,
52 int *status);
74extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev, 53extern psiconv_string_t psiconv_read_string(const psiconv_buffer buf,int lev,
75 psiconv_u32 off,int *length); 54 psiconv_u32 off,int *length,
55 int *status);
76 56
77extern int psiconv_parse_bool(const psiconv_buffer buf, int lev, 57extern int psiconv_parse_bool(const psiconv_buffer buf, int lev,
78 psiconv_u32 off, int *length, 58 psiconv_u32 off, int *length,
79 psiconv_bool_t *result); 59 psiconv_bool_t *result);
80 60
100 psiconv_bullet *result); 80 psiconv_bullet *result);
101 81
102extern int psiconv_parse_tab(const psiconv_buffer buf, int lev, 82extern int psiconv_parse_tab(const psiconv_buffer buf, int lev,
103 psiconv_u32 off, int *length, 83 psiconv_u32 off, int *length,
104 psiconv_tab *result); 84 psiconv_tab *result);
85
86/* Note: the next two are special, because they modify an existing
87 layout structure! If it exits due to an unexpected error, part
88 of the structure may be modified, but it is still safe to call
89 psiconv_free_{paragraph,character}_layout_list on it (and that
90 is the only safe thing to do!) */
105 91
106extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf, 92extern int psiconv_parse_paragraph_layout_list(const psiconv_buffer buf,
107 int lev, psiconv_u32 off, int *length, 93 int lev, psiconv_u32 off, int *length,
108 psiconv_paragraph_layout result); 94 psiconv_paragraph_layout result);
109 95

Legend:
Removed from v.55  
changed lines
  Added in v.71

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