diff options
author | Dan Kalowsky <kalowsky@php.net> | 2003-05-20 17:37:53 +0000 |
---|---|---|
committer | Dan Kalowsky <kalowsky@php.net> | 2003-05-20 17:37:53 +0000 |
commit | 53c90b2344e4b3c60e126ba32f5c1be4f696a727 (patch) | |
tree | 85ec4a9ac2bb9e3ef39242114c0086f9dae58e79 /ext/imap/php_imap.h | |
parent | 9ac50a13d7e9ff4a76ce0b59ec8c0ed2f20da94a (diff) | |
download | php-git-53c90b2344e4b3c60e126ba32f5c1be4f696a727.tar.gz |
Adding imap_getacl, patch provided by Holger Burbach
(holger.burbach@gonicus.de)
@ Adding imap_getacl functionality. Function provided by Holger Burbach
Diffstat (limited to 'ext/imap/php_imap.h')
-rw-r--r-- | ext/imap/php_imap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/imap/php_imap.h b/ext/imap/php_imap.h index abfb87c4b8..a21fcddcba 100644 --- a/ext/imap/php_imap.h +++ b/ext/imap/php_imap.h @@ -171,6 +171,7 @@ PHP_FUNCTION(imap_get_quota); PHP_FUNCTION(imap_get_quotaroot); PHP_FUNCTION(imap_set_quota); PHP_FUNCTION(imap_setacl); +PHP_FUNCTION(imap_getacl); #endif @@ -201,6 +202,7 @@ ZEND_BEGIN_MODULE_GLOBALS(imap) unsigned long status_uidvalidity; #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001) zval **quota_return; + zval *imap_acl_list; #endif ZEND_END_MODULE_GLOBALS(imap) |