diff options
author | Sascha Schumann <sas@php.net> | 2002-10-24 13:15:49 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-10-24 13:15:49 +0000 |
commit | 2909e5c9c9313d25aa2dc85ea63ea51916043234 (patch) | |
tree | 7ccd1e817c174a33458372b4e0e7057890c87e3f /ext/dotnet/php_dotnet.h | |
parent | 26617f8b5f02a9bac6999e57315245626ccafb62 (diff) | |
download | php-git-2909e5c9c9313d25aa2dc85ea63ea51916043234.tar.gz |
centralize #include "build-defs.h" and drop (sometimes inconsistent) other
instances
Diffstat (limited to 'ext/dotnet/php_dotnet.h')
-rw-r--r-- | ext/dotnet/php_dotnet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dotnet/php_dotnet.h b/ext/dotnet/php_dotnet.h index b56af145e2..598c0b5579 100644 --- a/ext/dotnet/php_dotnet.h +++ b/ext/dotnet/php_dotnet.h @@ -1,7 +1,7 @@ #ifndef PHP_DOTNET_H #define PHP_DOTNET_H -#if WIN32|WINNT +#ifdef PHP_WIN32 PHP_MINIT_FUNCTION(DOTNET); PHP_MSHUTDOWN_FUNCTION(DOTNET); @@ -14,7 +14,7 @@ extern zend_module_entry DOTNET_module_entry; #define DOTNET_module_ptr NULL -#endif /* Win32|WINNT */ +#endif /* PHP_WIN32 */ #define phpext_DOTNET_ptr DOTNET_module_ptr |