diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 20:55:31 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 20:55:31 +0000 |
commit | fb1c77bd4f8a636ba47d720f8ca65fc6baae836d (patch) | |
tree | 1be0390e76d422f7abc36f577178f9683536fa84 /ext/db/php_db.h | |
parent | 71dddd7db7e768ae8145e085fcbb6b6db4a1c40a (diff) | |
download | php-git-fb1c77bd4f8a636ba47d720f8ca65fc6baae836d.tar.gz |
- Made PHP_VERSION and PHP_OS work again
- More php3_ cleanup
@- Restored the PHP_VERSION and PHP_OS constants (Zeev)
Diffstat (limited to 'ext/db/php_db.h')
-rw-r--r-- | ext/db/php_db.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/db/php_db.h b/ext/db/php_db.h index 30c8f809a3..cecc5aaf8c 100644 --- a/ext/db/php_db.h +++ b/ext/db/php_db.h @@ -40,7 +40,7 @@ #endif -extern php3_module_entry dbm_module_entry; +extern zend_module_entry dbm_module_entry; #define phpext_db_ptr &dbm_module_entry @@ -63,11 +63,11 @@ typedef struct dbm_info { #endif dbm_info *_php3_finddbm(pval *id,HashTable *list); -int _php3_dbmclose(dbm_info *info); -dbm_info *_php3_dbmopen(char *filename, char *mode); -int _php3_dbminsert(dbm_info *info, char *key, char *value); -char *_php3_dbmfetch(dbm_info *info, char *key); -int _php3_dbmreplace(dbm_info *info, char *key, char *value); +int php_dbm_close(dbm_info *info); +dbm_info *php_dbm_open(char *filename, char *mode); +int php_dbm_insert(dbm_info *info, char *key, char *value); +char *php_dbm_fetch(dbm_info *info, char *key); +int php_dbm_replace(dbm_info *info, char *key, char *value); int _php3_dbmexists(dbm_info *info, char *key); int _php3_dbmdelete(dbm_info *info, char *key); char *_php3_dbmfirstkey(dbm_info *info); |