[pywin32-checkins] pywin32/com/win32com/src/include PythonCOM.h,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-31 11:42:06
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv26712 Modified Files: PythonCOM.h Log Message: Cast default '-1' arg value to unsigned. Index: PythonCOM.h =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/include/PythonCOM.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** PythonCOM.h 31 Oct 2003 06:55:13 -0000 1.14 --- PythonCOM.h 31 Oct 2003 11:42:03 -0000 1.15 *************** *** 270,274 **** // Uses the HRESULT and an EXCEPINFO structure to create and // set a pythoncom.com_error. ! PYCOM_EXPORT PyObject* PyCom_BuildPyExceptionFromEXCEPINFO(HRESULT hr, EXCEPINFO *pexcepInfo, UINT nArgErr = -1); // Sets a pythoncom.internal_error - no one should ever see these! --- 270,274 ---- // Uses the HRESULT and an EXCEPINFO structure to create and // set a pythoncom.com_error. ! PYCOM_EXPORT PyObject* PyCom_BuildPyExceptionFromEXCEPINFO(HRESULT hr, EXCEPINFO *pexcepInfo, UINT nArgErr = (UINT)-1); // Sets a pythoncom.internal_error - no one should ever see these! |