cvs: ZendEngine2(PHP_5_3) / zend_globals.h
[email protected] ("Pierre-Alain Joye") Fri, 16 Jan 2009 00:57:43 -0000
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvspajoye1232067463@cvsserver> |
pajoye Fri Jan 16 00:57:43 2009 UTC
Modified files: (Branch: PHP_5_3)
/ZendEngine2 zend_globals.h
Log:
- 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)
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_globals.h?r1=1.141.2.3.2.7.2.21&r2=1.141.2.3.2.7.2.22&diff_format=u
Index: ZendEngine2/zend_globals.h
diff -u ZendEngine2/zend_globals.h:1.141.2.3.2.7.2.21 ZendEngine2/zend_globals.h:1.141.2.3.2.7.2.22
--- ZendEngine2/zend_globals.h:1.141.2.3.2.7.2.21 Wed Dec 31 11:15:32 2008
+++ ZendEngine2/zend_globals.h Fri Jan 16 00:57:43 2009
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_globals.h,v 1.141.2.3.2.7.2.21 2008/12/31 11:15:32 sebastian Exp $ */
+/* $Id: zend_globals.h,v 1.141.2.3.2.7.2.22 2009/01/16 00:57:43 pajoye Exp $ */
#ifndef ZEND_GLOBALS_H
#define ZEND_GLOBALS_H
@@ -215,6 +215,7 @@
#ifdef ZEND_WIN32
zend_bool timed_out;
+ OSVERSIONINFOEX windows_version_info;
#endif
HashTable regular_list;