summaryrefslogtreecommitdiff
path: root/ext/dba/php_dba.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dba/php_dba.h')
-rw-r--r--ext/dba/php_dba.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/dba/php_dba.h b/ext/dba/php_dba.h
index a504e972d1..0eeb38c027 100644
--- a/ext/dba/php_dba.h
+++ b/ext/dba/php_dba.h
@@ -41,6 +41,12 @@ typedef enum {
DBA_CREAT
} dba_mode_t;
+typedef enum {
+ DBA_BTREE = 1,
+ DBA_HASH,
+ DBA_RECNO
+} dba_type_t;
+
typedef struct dba_info {
/* public */
void *dbf; /* ptr to private data or whatever */