Update of /cvsroot/pywin32/pywin32/com/win32comext/axcontrol/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26452/com/win32comext/axcontrol/src
Modified Files:
PyIOleObject.cpp
Log Message:
autoduck corrections
Index: PyIOleObject.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axcontrol/src/PyIOleObject.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PyIOleObject.cpp 12 Oct 2007 00:36:12 -0000 1.4
--- PyIOleObject.cpp 17 Oct 2007 03:50:24 -0000 1.5
***************
*** 257,267 ****
return NULL;
// @pyparm int|iVerb||Description for iVerb
! // *** The input argument lpmsg of type "LPMSG" was not processed ***
! // The type 'LPMSG' (lpmsg) is unknown.
// @pyparm <o PyIOleClientSite>|pActiveSite||Description for pActiveSite
// @pyparm int|lindex||Description for lindex
// @pyparm HWND|hwndParent||Description for hwndParent
! // *** The input argument lprcPosRect of type "LPCRECT" was not processed ***
! // The type 'LPCRECT' (lprcPosRect) is unknown.
PyObject *obpActiveSite;
LONG iVerb;
--- 257,265 ----
return NULL;
// @pyparm int|iVerb||Description for iVerb
! // @pyparm <o PyMSG>|msg||MSG tuple, a-la win32gui etc.
// @pyparm <o PyIOleClientSite>|pActiveSite||Description for pActiveSite
// @pyparm int|lindex||Description for lindex
// @pyparm HWND|hwndParent||Description for hwndParent
! // @pyparm (int, int, int, int)|rect||
PyObject *obpActiveSite;
LONG iVerb;
|