diff options
author | Wez Furlong <wez@php.net> | 2004-07-31 17:28:27 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-07-31 17:28:27 +0000 |
commit | 47e7fef08ee55782b29e4c4c54d990f5cb8533e9 (patch) | |
tree | 9752c30af5d1d77eb08cbf855f49b8cfbed38eac /win32/php_win32_globals.h | |
parent | d4ad4ac3703cb2ee9e8b5166981bce4767cdc8cd (diff) | |
download | php-git-47e7fef08ee55782b29e4c4c54d990f5cb8533e9.tar.gz |
Allow win32 stuff to build non-zts.
Fix stream crypto func (again? didn't I already commit that?)
Diffstat (limited to 'win32/php_win32_globals.h')
-rwxr-xr-x | win32/php_win32_globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/php_win32_globals.h b/win32/php_win32_globals.h index 7153478cda..113a7122a7 100755 --- a/win32/php_win32_globals.h +++ b/win32/php_win32_globals.h @@ -31,8 +31,8 @@ typedef struct _php_win32_core_globals php_win32_core_globals; # define PW32G(v) TSRMG(php_win32_core_globals_id, php_win32_core_globals*, v) extern PHPAPI int php_win32_core_globals_id; #else -# define PW32G(v) (php_win32_core_globals.v) -extern PHPAPI struct _php_win32_core_globals php_win32_core_globals; +# define PW32G(v) (the_php_win32_core_globals.v) +extern PHPAPI struct _php_win32_core_globals the_php_win32_core_globals; #endif struct _php_win32_core_globals { |