[pywin32-checkins] pywin32/com/win32com/src/include stdafx.h,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-08 05:38:22
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv31208 Modified Files: stdafx.h Log Message: Pull in pywintypes.h in the pre-compiled header, so any magic needed before python.h/windows.h gets done. Index: stdafx.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/include/stdafx.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stdafx.h 10 Jan 2003 02:48:43 -0000 1.2 --- stdafx.h 8 Nov 2003 05:38:17 -0000 1.3 *************** *** 9,18 **** #define _WIN32_DCOM ! #include <limits.h> ! ! #include <Python.h> ! ! #ifndef MS_WINCE // win32 wont need that soon? ! // Must come after Python headers. ! #include <windows.h> ! #endif --- 9,12 ---- #define _WIN32_DCOM ! // PyWinTypes.h pulls in Python.h and windows.h. ! #include <PyWinTypes.h> |