Update of /cvsroot/pywin32/pywin32/win32/src/PerfMon
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9817/win32/src/PerfMon
Modified Files:
MappingManager.cpp PyPerfMon.cpp
Log Message:
Yet more TCHAR/64bit and other misc changes from py3k branch.
Index: MappingManager.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/PerfMon/MappingManager.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MappingManager.cpp 5 Mar 2005 04:50:47 -0000 1.3
--- MappingManager.cpp 13 Nov 2008 11:11:58 -0000 1.4
***************
*** 60,64 ****
_tcscat(szGlobalMapping, szMappingName);
! m_hMappedObject = CreateFileMapping((HANDLE)0xFFFFFFFF,
NULL,
PAGE_READWRITE,
--- 60,64 ----
_tcscat(szGlobalMapping, szMappingName);
! m_hMappedObject = CreateFileMapping(INVALID_HANDLE_VALUE,
NULL,
PAGE_READWRITE,
Index: PyPerfMon.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/PerfMon/PyPerfMon.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PyPerfMon.cpp 9 Feb 2001 07:35:59 -0000 1.2
--- PyPerfMon.cpp 13 Nov 2008 11:11:58 -0000 1.3
***************
*** 86,90 ****
/* List of functions exported by this module */
! // @module perfmon|A module which supports common Windows types.
static struct PyMethodDef perfmon_functions[] = {
{"LoadPerfCounterTextStrings", PyLoadPerfCounterTextStrings, 1}, // @pymeth LoadPerfCounterTextStrings|
--- 86,90 ----
/* List of functions exported by this module */
! // @module perfmon|A module which wraps Performance Monitor functions.
static struct PyMethodDef perfmon_functions[] = {
{"LoadPerfCounterTextStrings", PyLoadPerfCounterTextStrings, 1}, // @pymeth LoadPerfCounterTextStrings|
|