- release
[m6w6/ext-courierauth] / php_courierauth.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: courierauth |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_COURIERAUTH_H
16 #define PHP_COURIERAUTH_H
17
18 #define PHP_COURIERAUTH_VERSION "0.1.0"
19
20 extern zend_module_entry courierauth_module_entry;
21 #define phpext_courierauth_ptr &courierauth_module_entry
22
23 #ifdef ZTS
24 #include "TSRM.h"
25 #endif
26
27 PHP_MINFO_FUNCTION(courierauth);
28
29 PHP_FUNCTION(courierauth_login);
30 PHP_FUNCTION(courierauth_getuserinfo);
31 PHP_FUNCTION(courierauth_enumerate);
32 PHP_FUNCTION(courierauth_passwd);
33 PHP_FUNCTION(courierauth_getoption);
34
35 #endif /* PHP_COURIERAUTH_H */
36
37
38 /*
39 * Local variables:
40 * tab-width: 4
41 * c-basic-offset: 4
42 * End:
43 * vim600: noet sw=4 ts=4 fdm=marker
44 * vim<600: noet sw=4 ts=4
45 */