Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26962/Pythonwin
Modified Files:
stdafx.h
Log Message:
remove HIERLIST macro and provide default for WINVER
Index: stdafx.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/stdafx.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** stdafx.h 14 Mar 2000 23:29:09 -0000 1.2
--- stdafx.h 8 Jan 2009 22:07:52 -0000 1.3
***************
*** 4,10 ****
//
- //#define HIER_LIST Yay - no more - tree control now used!
#define WIN32_LEAN_AND_MEAN
#include <afxwin.h> // MFC core and standard components
--- 4,15 ----
//
#define WIN32_LEAN_AND_MEAN
+ #ifndef WINVER
+ // we don't need this, but vs2009 makes noise without it set to something -
+ // and this is what we currently use...
+ #define WINVER 0x0600
+ #endif
+
#include <afxwin.h> // MFC core and standard components
|