Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src
In directory sc8-pr-cvs1:/tmp/cvs-serv876
Modified Files:
shell.cpp
Log Message:
autoduck
Index: shell.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/shell.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** shell.cpp 9 Oct 2003 12:08:09 -0000 1.10
--- shell.cpp 9 Oct 2003 12:48:27 -0000 1.11
***************
*** 675,679 ****
}
! // @pymethod string/int|shell|DragQueryFile|Notifies the shell that an image in the system image list has changed.
static PyObject *PyDragQueryFile(PyObject *self, PyObject *args)
{
--- 675,683 ----
}
! // @pymethod string/int|shell|DragQueryFile|Notifies the shell that an
! // image in the system image list has changed.
! // @rdesc If the value for index is -1, the result is the number of
! // filenames available, otherwise the result is a string with the
! // requested filename.
static PyObject *PyDragQueryFile(PyObject *self, PyObject *args)
{
***************
*** 681,686 ****
UINT index;
if(!PyArg_ParseTuple(args, "ii:DragQueryFile",
! &iglobal,
! &index))
return NULL;
HDROP hglobal = (HDROP)iglobal;
--- 685,690 ----
UINT index;
if(!PyArg_ParseTuple(args, "ii:DragQueryFile",
! &iglobal, // @pyparm int|hglobal||The HGLOBAL object - generally obtained via the 'data_handle' property of a <o PySTGMEDIUM> object.
! &index)) // @pyparm int|index||The index to retrieve. If -1, the result if an integer representing the valid index values.
return NULL;
HDROP hglobal = (HDROP)iglobal;
***************
*** 706,710 ****
int iglobal;
if(!PyArg_ParseTuple(args, "i:DragQueryFile",
! &iglobal))
return NULL;
HDROP hglobal = (HDROP)iglobal;
--- 710,714 ----
int iglobal;
if(!PyArg_ParseTuple(args, "i:DragQueryFile",
! &iglobal)) // @pyparm int|hglobal||The HGLOBAL object - generally obtained the 'data_handle' property of a <o PySTGMEDIUM>
return NULL;
HDROP hglobal = (HDROP)iglobal;
|