diff options
author | Rasmus Lerdorf <rasmus@php.net> | 1999-11-30 22:54:16 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 1999-11-30 22:54:16 +0000 |
commit | b9e59b296de527b95e76106dc679c5ef452b2fff (patch) | |
tree | a7012d45074deb6a345a7267285fe477122b510a /ext/imap/imap.h | |
parent | 51572c2dcda8ce35d0394f4b4512e711159ba76b (diff) | |
download | php-git-b9e59b296de527b95e76106dc679c5ef452b2fff.tar.gz |
# another oops
Diffstat (limited to 'ext/imap/imap.h')
-rw-r--r-- | ext/imap/imap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/imap/imap.h b/ext/imap/imap.h index cf89e029c2..b88c514b5c 100644 --- a/ext/imap/imap.h +++ b/ext/imap/imap.h @@ -13,8 +13,8 @@ #endif /* Functions accessable to PHP */ -extern php3_module_entry php3_imap_module_entry; -#define php3_imap_module_ptr &php3_imap_module_entry +extern zend_module_entry imap_module_entry; +#define imap_module_ptr &imap_module_entry extern PHP_MINIT_FUNCTION(imap); PHP_MINFO_FUNCTION(imap); @@ -65,7 +65,7 @@ PHP_FUNCTION(imap_fetch_overview); PHP_FUNCTION(imap_mail_compose); #else -#define php3_imap_module_ptr NULL +#define imap_module_ptr NULL #endif /* HAVE_IMAP */ #endif @@ -75,7 +75,7 @@ PHP_FUNCTION(imap_mail_compose); -#define phpext_imap_ptr php3_imap_module_ptr +#define phpext_imap_ptr imap_module_ptr |