changed GArray to GPtrArray for MdbColumn list. completed mdb_bind_column() stuff

This commit is contained in:
brianb
2000-03-12 14:08:53 +00:00
parent fa6c08a08d
commit 6e24e9cb02
5 changed files with 64 additions and 37 deletions

View File

@@ -76,7 +76,7 @@ typedef struct {
unsigned int kkd_rowid;
int num_props;
GArray *props;
GArray *columns;
GPtrArray *columns;
} MdbCatalogEntry;
typedef struct {
@@ -86,7 +86,7 @@ typedef struct {
int num_rows;
int num_pgs;
int first_data_pg;
GArray *columns;
GPtrArray *columns;
} MdbTableDef;
typedef struct {