summaryrefslogtreecommitdiff
path: root/Zend/zend_globals.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-01-16 00:57:43 +0000
committerPierre Joye <pajoye@php.net>2009-01-16 00:57:43 +0000
commitf704a50732e4dd0f40635a21ab345fc12ff9dc97 (patch)
treef314211ba2a03a2b567a2b88427c4a94350ea2b3 /Zend/zend_globals.h
parent2f61ad9b9805bedf6be4e8a38b525684e4699c8c (diff)
downloadphp-git-f704a50732e4dd0f40635a21ab345fc12ff9dc97.tar.gz
- add EG(windows_version_info), set at init time once per instance
contains a OSVERSIONINFOEX struct. It lets us determine easily on which windows version is used (for example)
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r--Zend/zend_globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h
index 9a702b10e6..51baf773ef 100644
--- a/Zend/zend_globals.h
+++ b/Zend/zend_globals.h
@@ -215,6 +215,7 @@ struct _zend_executor_globals {
#ifdef ZEND_WIN32
zend_bool timed_out;
+ OSVERSIONINFOEX windows_version_info;
#endif
HashTable regular_list;