Georg fixed endian issue, added support for MDB_BOOL

I (Brian) reorged data.c, added AUTHORS file
This commit is contained in:
brianb
2000-03-11 22:37:10 +00:00
parent 282902b6e3
commit 48d80d3de8
3 changed files with 120 additions and 61 deletions

View File

@@ -48,6 +48,7 @@ enum {
MDB_UNKNOWN_0B
};
enum {
MDB_BOOL = 0x01,
MDB_INT = 0x03,
MDB_LONGINT = 0x04,
MDB_SDATETIME = 0x08,
@@ -96,6 +97,7 @@ typedef struct {
char name[MDB_MAX_OBJ_NAME+1];
int col_type;
int col_size;
void *bind_ptr;
GHashTable *properties;
} MdbColumn;