mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Improve C++ compatibility (Horst Knorr)
This commit is contained in:
parent
e2ba88c386
commit
90078d0e0f
@ -1,6 +1,7 @@
|
||||
Fri Apr 8 20:36:51 CDT 2005 Jeff Smith <whydoubt@yahoo.com>
|
||||
* src/gmdb2/gladefiles/Makefile.am:
|
||||
* src/gmdb2/Makefile.am: Clean up minor gmdb makefile issues
|
||||
* include/mdbsql.h: Improve C++ compatibility (Horst Knorr)
|
||||
|
||||
Wed Mar 30 23:21:25 CST 2005 Jeff Smith <whydoubt@yahoo.com>
|
||||
* autogen.sh: Improve order of autotools calls
|
||||
|
@ -1,11 +1,15 @@
|
||||
#ifndef _mdbsql_h_
|
||||
#define _mdbsql_h_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
#include <mdbtools.h>
|
||||
|
||||
#ifndef _mdbsql_h_
|
||||
#define _mdbsql_h_
|
||||
|
||||
typedef struct {
|
||||
MdbHandle *mdb;
|
||||
int all_columns;
|
||||
@ -75,4 +79,8 @@ extern int mdb_sql_fetch_row(MdbSQL *sql, MdbTableDef *table);
|
||||
extern int mdb_sql_add_temp_col(MdbSQL *sql, MdbTableDef *ttable, int col_num, char *name, int col_type, int col_size, int is_fixed);
|
||||
extern void mdb_sql_bind_column(MdbSQL *sql, int colnum, char *varaddr, int *len_ptr);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user