/[public]/psiconv/trunk/program/psiconv/psiconv.h
ViewVC logotype

Diff of /psiconv/trunk/program/psiconv/psiconv.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 147 Revision 196
1/* 1/*
2 psiconv.h - Part of psiconv, a PSION 5 file formats converter 2 psiconv.h - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 1999-2004 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.
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/ 18*/
19 19
20#ifndef PSICONV_PSICONV_H 20#ifndef PSICONV_H
21#define PSICONV_PSICONV_H 21#define PSICONV_H
22 22
23#include "psiconv/data.h" 23#include <psiconv/data.h>
24#include <psiconv/configuration.h>
24 25
25#ifndef PSICONV_ENC_H 26#define FORMAT_WORD 0x01
26#include "encoding.h" 27#define FORMAT_TEXTED 0x02
27#endif 28#define FORMAT_CLIPART_SINGLE 0x04
29#define FORMAT_CLIPART_MULTIPLE 0x08
30#define FORMAT_MBM_SINGLE 0x10
31#define FORMAT_MBM_MULTIPLE 0x20
32#define FORMAT_SKETCH 0x40
28 33
29typedef int output_function(const char *filename, const psiconv_file, 34typedef enum
35{
36 ENCODING_UTF8,
37 ENCODING_UCS2,
38 ENCODING_PSION,
39 ENCODING_ASCII,
40 ENCODING_ASCII_HTML
41} encoding;
42
43typedef int output_function(const psiconv_config config,
44 psiconv_list list, const psiconv_file file,
30 const char *type, 45 const char *type,
31 const psiconv_encoding encoding_type); 46 const encoding encoding_type);
32 47
33typedef struct psiconv_fileformat_s { 48typedef struct fileformat_s {
34 const char *name; 49 const char *name;
35 const char *description; 50 const char *description;
51 int supported_format;
36 output_function *output; 52 output_function *output;
37} *psiconv_fileformat; 53} *fileformat;
38 54
39psiconv_list fileformat_list; /* of struct psiconv_fileformat */ 55psiconv_list fileformat_list; /* of struct psiconv_fileformat */
40 56
57
41#endif /* PSICONV_GEN_H */ 58#endif /* PSICONV_H */

Legend:
Removed from v.147  
changed lines
  Added in v.196

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