cvs: ZendEngine2 / zend_globals.h

[email protected] ("Pierre-Alain Joye") Fri, 16 Jan 2009 10:03:22 -0000
Newsgroups php.zend-engine.cvs
Message-ID <cvspajoye1232100202@cvsserver>
pajoye		Fri Jan 16 10:03:22 2009 UTC

  Modified files:              
    /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.183&r2=1.184&diff_format=u
Index: ZendEngine2/zend_globals.h
diff -u ZendEngine2/zend_globals.h:1.183 ZendEngine2/zend_globals.h:1.184
--- ZendEngine2/zend_globals.h:1.183	Wed Dec 31 11:12:29 2008
+++ ZendEngine2/zend_globals.h	Fri Jan 16 10:03:21 2009
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_globals.h,v 1.183 2008/12/31 11:12:29 sebastian Exp $ */
+/* $Id: zend_globals.h,v 1.184 2009/01/16 10:03:21 pajoye Exp $ */
 
 #ifndef ZEND_GLOBALS_H
 #define ZEND_GLOBALS_H
@@ -203,6 +203,7 @@
 
 #ifdef ZEND_WIN32
 	zend_bool timed_out;
+	OSVERSIONINFOEX windows_version_info;
 #endif
 
 	HashTable regular_list;