1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/* Fo
* fo-libfo-basic.h: 'Basic' (i.e., simple) high-level interface to libfo
*
* Copyright (C) 2003 Sun Microsystems
* Copyright (C) 2007 Menteith Consulting Ltd
*
* See COPYING for the status of this software.
*/
#ifndef __FO_LIBFO_BASIC_H__
#define __FO_LIBFO_BASIC_H__
#include <stdio.h>
#include <glib/gtypes.h>
#include <glib/gerror.h>
G_BEGIN_DECLS
typedef enum
{
FO_LIBFO_BASIC_ERROR_FAILED, /* Generic error code */
FO_LIBFO_BASIC_ERROR_UNKNOWN_FORMAT,
FO_LIBFO_BASIC_ERROR_WARNING, /* Non-fatal error */
FO_LIBFO_BASIC_ERROR_LAST
} FoLibfoBasicError;
#define FO_LIBFO_BASIC_ERROR (fo_libfo_basic_error_quark ())
GQuark fo_libfo_basic_error_quark (void) G_GNUC_CONST;
extern const gchar *fo_libfo_basic_error_messages[FO_LIBFO_BASIC_ERROR_LAST];
gboolean fo_libfo_init (void);
typedef gpointer (*FoMalloc) (gsize n_bytes);
typedef gpointer (*FoRealloc) (gpointer mem,
gsize n_bytes);
typedef void (*FoFree) (gpointer mem);
gboolean fo_libfo_init2 (FoMalloc fo_malloc,
FoRealloc fo_realloc,
FoFree fo_free);
gboolean fo_libfo_shutdown (void);
gboolean fo_libfo_format (const gchar *xml,
const gchar *xslt,
const gchar *out,
GError **error);
G_END_DECLS
#endif /* __FO_LIBFO_BASIC_H__ */
|