[pywin32-checkins] pywin32/win32/src PyWinTypesmodule.cpp, 1.34, 1.35
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-10-17 04:16:14
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2982 Modified Files: PyWinTypesmodule.cpp Log Message: Add missing 'const' to PyWinObject_FromMSG Index: PyWinTypesmodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PyWinTypesmodule.cpp,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** PyWinTypesmodule.cpp 12 Oct 2007 00:35:09 -0000 1.34 --- PyWinTypesmodule.cpp 17 Oct 2007 04:16:16 -0000 1.35 *************** *** 760,764 **** } ! PyObject *PyWinObject_FromMSG(MSG *pMsg) { return Py_BuildValue("Niiii(ii)", --- 760,764 ---- } ! PyObject *PyWinObject_FromMSG(const MSG *pMsg) { return Py_BuildValue("Niiii(ii)", |