[pywin32-checkins] pywin32/win32/src/PerfMon PerfObjectType.cpp, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-01-03 06:44:04
|
Update of /cvsroot/pywin32/pywin32/win32/src/PerfMon In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15705/PerfMon Modified Files: PerfObjectType.cpp Log Message: Avoid lots of warnings including WRITE_RESTRICTED being redefined by letting pywintypes.h manage the order etc of including python.h, windows.h and structmember.h. Also add Py_CLEAR and Py_RETURN_NONE to py2.3 builds. Index: PerfObjectType.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PerfMon/PerfObjectType.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PerfObjectType.cpp 11 Dec 2008 00:25:40 -0000 1.3 --- PerfObjectType.cpp 3 Jan 2009 06:43:59 -0000 1.4 *************** *** 3,9 **** // @doc - #include "windows.h" - #include "Python.h" - #include "structmember.h" #include "PyWinTypes.h" #include "winperf.h" --- 3,6 ---- |