X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/83ff05c356f6497be2475640d1cb2e3eb369831f..3b7fa78b1de8f9ee8718cba3da3b2db522b70620:/src/saxdb.h diff --git a/src/saxdb.h b/src/saxdb.h index 7a7c1e1..7bd3406 100644 --- a/src/saxdb.h +++ b/src/saxdb.h @@ -3,9 +3,9 @@ * * This file is part of x3. * - * srvx is free software; you can redistribute it and/or modify + * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -26,15 +26,7 @@ DECLARE_LIST(int_list, int); struct saxdb; -/* This definition should ONLY be used so callers of - * saxdb_open_context() can initialize jbuf properly. */ -struct saxdb_context { - FILE *output; - unsigned int indent; - struct int_list complex; - jmp_buf jbuf; -}; - +struct saxdb_context; #define SAXDB_READER(NAME) int NAME(struct dict *db) typedef SAXDB_READER(saxdb_reader_func_t); @@ -55,9 +47,11 @@ void saxdb_end_record(struct saxdb_context *dest); void saxdb_write_string_list(struct saxdb_context *dest, const char *name, struct string_list *list); void saxdb_write_string(struct saxdb_context *dest, const char *name, const char *value); void saxdb_write_int(struct saxdb_context *dest, const char *name, unsigned long value); +void saxdb_write_sint(struct saxdb_context *dest, const char *name, long value); /* For doing db writing by hand */ struct saxdb_context *saxdb_open_context(FILE *f); -void saxdb_close_context(struct saxdb_context *ctx); +void saxdb_close_context(struct saxdb_context *ctx, int close_file); +jmp_buf *saxdb_jmp_buf(struct saxdb_context *ctx); #endif /* !defined(DBMGR_H) */