Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16922/Pythonwin
Modified Files:
Win32app.h
Log Message:
Allow things to build with early Vista x64 SDK
Index: Win32app.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/Win32app.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Win32app.h 10 Jan 2006 04:39:43 -0000 1.4
--- Win32app.h 12 Jul 2007 07:51:30 -0000 1.5
***************
*** 56,60 ****
--- 56,63 ----
// warning C4996: 'xxx' was declared deprecated
#pragma warning( disable : 4996 )
+ #ifndef _AFX_NO_CTL3D_SUPPORT
+ // Not available on early SDK _Win64 builds.
BOOL Enable3dControls() {return CWinApp::Enable3dControls();}
+ #endif
void SetDialogBkColor(COLORREF clrCtlBk, COLORREF clrCtlText) { CWinApp::SetDialogBkColor(clrCtlBk, clrCtlText);}
#pragma warning( default : 4996 )
|