mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Remove duplicate declaration
This commit is contained in:
parent
d6db6c3ed4
commit
30e79efcce
@ -10,6 +10,7 @@ Wed Jun 23 23:19:43 CDT 2004 Jeff Smith <whydoubt@yahoo.com>
|
||||
* src/util/prole.c:
|
||||
* src/util/sargtest.c:
|
||||
* src/util/updrow.c: Fix some memory leaks
|
||||
* include/mdbtools.h: Remove duplicate declaration
|
||||
|
||||
Wed Jun 23 07:30:17 CDT 2004 Jeff Smith <whydoubt@yahoo.com>
|
||||
* src/libmdb/table.c:
|
||||
|
@ -408,10 +408,9 @@ extern long _mdb_get_int32(unsigned char *buf, int offset);
|
||||
/* catalog.c */
|
||||
extern void mdb_alloc_catalog(MdbHandle *mdb);
|
||||
extern void mdb_free_catalog(MdbHandle *mdb);
|
||||
GPtrArray *mdb_read_catalog(MdbHandle *mdb, int obj_type);
|
||||
extern GPtrArray *mdb_read_catalog(MdbHandle *mdb, int obj_type);
|
||||
extern void mdb_dump_catalog(MdbHandle *mdb, int obj_type);
|
||||
extern char *mdb_get_objtype_string(int obj_type);
|
||||
extern void mdb_dump_catalog(MdbHandle *mdb, int obj_type);
|
||||
|
||||
/* table.c */
|
||||
extern MdbTableDef *mdb_alloc_tabledef(MdbCatalogEntry *entry);
|
||||
@ -517,7 +516,7 @@ extern void mdb_fill_temp_field(MdbField *field, void *value, int siz, int is_fi
|
||||
|
||||
/* options.c */
|
||||
extern int mdb_get_option(unsigned long optnum);
|
||||
void mdb_debug(int klass, char *fmt, ...);
|
||||
extern void mdb_debug(int klass, char *fmt, ...);
|
||||
|
||||
/* iconv.c */
|
||||
extern int mdb_unicode2ascii(MdbHandle *mdb, unsigned char *buf, int offset, int len, char *dest);
|
||||
|
Loading…
Reference in New Issue
Block a user