diff options
author | Sascha Schumann <sas@php.net> | 2000-02-12 14:38:31 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-02-12 14:38:31 +0000 |
commit | 0036b8bba00a1e7cdbe3994b1bb5f3cf3f3176ad (patch) | |
tree | e5ce26e63c035f91119b1796c6a07a795117276d /ext/imap/imap.h | |
parent | f6eb750183af57f14a1ac0e9d44e3160389be0d2 (diff) | |
download | php-git-0036b8bba00a1e7cdbe3994b1bb5f3cf3f3176ad.tar.gz |
#if WIN.* => #ifdef PHP_WIN32
#if !(WIN.* => #ifndef PHP_WIN32
Diffstat (limited to 'ext/imap/imap.h')
-rw-r--r-- | ext/imap/imap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/imap/imap.h b/ext/imap/imap.h index 082751f442..a62e455e09 100644 --- a/ext/imap/imap.h +++ b/ext/imap/imap.h @@ -8,7 +8,7 @@ #if HAVE_IMAP -#if !(WIN32||WINNT) +#ifndef PHP_WIN32 #include "build-defs.h" #endif @@ -74,7 +74,7 @@ PHP_FUNCTION(imap_mail_compose); PHP_FUNCTION(imap_alerts); PHP_FUNCTION(imap_errors); PHP_FUNCTION(imap_last_error); -#if !(WIN32|WINNT) +#ifndef PHP_WIN32 PHP_FUNCTION(imap_mail); #endif PHP_FUNCTION(imap_search); |