diff options
author | foobar <sniper@php.net> | 2003-02-10 00:22:20 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-02-10 00:22:20 +0000 |
commit | af8557850bad81d3167105cac9af3b9c031a5427 (patch) | |
tree | 97a5d8b828b73c780dba33ffc2711f411f299e03 /ext/notes/php_notes.c | |
parent | 3df73b303e3d434d5f8a6b87b56cec16f51dab59 (diff) | |
download | php-git-af8557850bad81d3167105cac9af3b9c031a5427.tar.gz |
MFH
Diffstat (limited to 'ext/notes/php_notes.c')
-rw-r--r-- | ext/notes/php_notes.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ext/notes/php_notes.c b/ext/notes/php_notes.c index 23c6b4588c..16a459ceb1 100644 --- a/ext/notes/php_notes.c +++ b/ext/notes/php_notes.c @@ -31,7 +31,12 @@ #include "php_notes.h" #include "ext/standard/info.h" +#ifdef PHP_WIN32 +#include <global.h> +#else #include <notes_global.h> +#endif + #include <nsfdb.h> #include <nsfdata.h> #include <osmisc.h> @@ -58,9 +63,14 @@ #include <io.h> #include <direct.h> #include <fcntl.h> - #include <globerr.h> + +#ifdef PHP_WIN32 +#include <mail.h> +#else #include <notes_mail.h> +#endif + #include <mailserv.h> #include <nsf.h> #include <osfile.h> /* OSPathNetConstruct */ |