diff options
author | Ard Biesheuvel <abies@php.net> | 2003-08-16 15:31:06 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2003-08-16 15:31:06 +0000 |
commit | 6561a0546be2fa0a913f47bc9084241928ad3cfe (patch) | |
tree | db26ae4669f56a240f91513faffe791371f82d34 /ext/interbase/php_interbase.h | |
parent | b3058675c13b966427e7f10569bdf1e7d011a312 (diff) | |
download | php-git-6561a0546be2fa0a913f47bc9084241928ad3cfe.tar.gz |
Some general cleaning up
Some preliminary changes for extensions to array functions
Diffstat (limited to 'ext/interbase/php_interbase.h')
-rw-r--r-- | ext/interbase/php_interbase.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ext/interbase/php_interbase.h b/ext/interbase/php_interbase.h index 3c2a5b46cd..55039683b2 100644 --- a/ext/interbase/php_interbase.h +++ b/ext/interbase/php_interbase.h @@ -23,8 +23,6 @@ #ifndef PHP_INTERBASE_H #define PHP_INTERBASE_H -#if HAVE_IBASE - #include <ibase.h> extern zend_module_entry ibase_module_entry; @@ -194,11 +192,13 @@ typedef struct _php_ibase_varchar { enum php_interbase_option { PHP_IBASE_DEFAULT = 0, - PHP_IBASE_TEXT = 1, PHP_IBASE_UNIXTIME = 2, PHP_IBASE_TIMESTAMP = 4, PHP_IBASE_DATE = 8, PHP_IBASE_TIME = 16, + /* fetch args */ + PHP_IBASE_FETCH_BLOBS = 1, + PHP_IBASE_FETCH_ARRAYS = 2, /* transactions */ PHP_IBASE_WRITE = 2, PHP_IBASE_READ = 4, @@ -221,8 +221,6 @@ enum php_interbase_option { #define phpext_interbase_ptr NULL -#endif /* HAVE_IBASE */ - #endif /* PHP_INTERBASE_H */ /* |