[pywin32-checkins] pywin32/win32/src win32gui.i,1.71,1.72
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-12-02 07:49:57
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11509/win32/src Modified Files: win32gui.i Log Message: Add basic autoduck for SetWindowLong Index: win32gui.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** win32gui.i 14 Oct 2005 18:16:40 -0000 1.71 --- win32gui.i 2 Dec 2005 07:49:49 -0000 1.72 *************** *** 1507,1511 **** ); ! %endif // End of winxpgui only functi0ons // @pyswig int|GetWindowLong| --- 1507,1511 ---- ); ! %endif // End of winxpgui only functions // @pyswig int|GetWindowLong| *************** *** 1573,1576 **** --- 1573,1582 ---- long wndproc, hwnd, wparam, lparam; UINT msg; + // @pyparm int|wndproc||The wndproc to call - this is generally the return + // value of SetWindowLong(GWL_WNDPROC) + // @pyparm int|hwnd|| + // @pyparm int|msg|| + // @pyparm int|wparam|| + // @pyparm int|lparam|| if (!PyArg_ParseTuple(args, "llill", &wndproc, &hwnd, &msg, &wparam, &lparam)) return NULL; |