Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18800
Modified Files:
win32gui.i
Log Message:
PostMessage's wparam and lparam params now default to 0 - like SendMessage
Index: win32gui.i
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32gui.i,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** win32gui.i 24 Jun 2005 03:27:58 -0000 1.66
--- win32gui.i 28 Jun 2005 12:32:47 -0000 1.67
***************
*** 1667,1673 ****
// @pyparm int|hwnd||The handle to the Window
// @pyparm int|message||The ID of the message to post
! // @pyparm int|wparam||An integer whose value depends on the message
! // @pyparm int|lparam||An integer whose value depends on the message
! BOOLAPI PostMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
// @pyswig |PostThreadMessage|
--- 1667,1673 ----
// @pyparm int|hwnd||The handle to the Window
// @pyparm int|message||The ID of the message to post
! // @pyparm int|wparam|0|An integer whose value depends on the message
! // @pyparm int|lparam|0|An integer whose value depends on the message
! BOOLAPI PostMessage(HWND hwnd, UINT msg, WPARAM wParam = 0, LPARAM lParam = 0);
// @pyswig |PostThreadMessage|
|