[pywin32-checkins] pywin32/win32/src win32pdhmodule.cpp,1.16,1.17
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-05-25 00:44:42
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19331 Modified Files: win32pdhmodule.cpp Log Message: Allow ConnectMachine to Accept None for local machine Index: win32pdhmodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32pdhmodule.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** win32pdhmodule.cpp 16 Aug 2007 09:18:31 -0000 1.16 --- win32pdhmodule.cpp 25 May 2008 00:44:43 -0000 1.17 *************** *** 1014,1018 **** return NULL; TCHAR *path; ! if (!PyWinObject_AsTCHAR(obPath, &path, FALSE)) return NULL; --- 1014,1018 ---- return NULL; TCHAR *path; ! if (!PyWinObject_AsTCHAR(obPath, &path, TRUE)) return NULL; |