summaryrefslogtreecommitdiff
path: root/ext/imap/imap.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>1999-08-02 15:02:52 +0000
committerAndrey Hristov <andrey@php.net>1999-08-02 15:02:52 +0000
commit05585132caf918d00a2749ab3c77c256a03c2807 (patch)
treee9c8561d2b198773facc3ae86c3359d175c1ebae /ext/imap/imap.c
parent98037c425d981f5e08bd308fd9965e5a7e72b98c (diff)
downloadphp-git-05585132caf918d00a2749ab3c77c256a03c2807.tar.gz
More symbol work.
Diffstat (limited to 'ext/imap/imap.c')
-rw-r--r--ext/imap/imap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c
index 7d7014c066..e6a6326a87 100644
--- a/ext/imap/imap.c
+++ b/ext/imap/imap.c
@@ -147,7 +147,7 @@ function_entry imap_functions[] = {
php3_module_entry php3_imap_module_entry = {
- IMAPVER, imap_functions, imap_init, NULL, NULL, NULL,imap_info, 0, 0, 0, NULL
+ IMAPVER, imap_functions, PHP_MINIT(imap), NULL, NULL, NULL,PHP_MINFO(imap), 0, 0, 0, NULL
};
@@ -206,7 +206,7 @@ inline int add_next_index_object(pval *arg, pval *tmp)
}
-void imap_info(void)
+PHP_MINFO_FUNCTION(imap)
{
php3_printf("Imap Support enabled<br>");
php3_printf("<table>");
@@ -219,7 +219,7 @@ void imap_info(void)
php3_printf("</tr></table>");
}
-int imap_init(INIT_FUNC_ARGS)
+PHP_MINIT_FUNCTION(imap)
{
#if !(WIN32|WINNT)
mail_link(&unixdriver); /* link in the unix driver */