[pywin32-checkins] pywin32/com/win32comext/shell/src shell.cpp, 1.62, 1.63
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-02-11 00:28:30
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12653 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.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** shell.cpp 8 Feb 2008 22:32:29 -0000 1.62 --- shell.cpp 11 Feb 2008 00:28:33 -0000 1.63 *************** *** 2483,2487 **** } ! // @pymethod (o PyIShellView|shell|SHCreateShellFolderView| static PyObject *PySHCreateShellFolderView(PyObject *self, PyObject *args) { --- 2483,2487 ---- } ! // @pymethod <o PyIShellView>|shell|SHCreateShellFolderView|Creates a new instance of the default Shell folder view object. static PyObject *PySHCreateShellFolderView(PyObject *self, PyObject *args) { *************** *** 2686,2690 **** } ! // @pymethod <o PyIShellItemArray>|shell|SHCreateShellItemArray| static PyObject *PySHCreateShellItemArray(PyObject *self, PyObject *args) { --- 2686,2690 ---- } ! // @pymethod <o PyIShellItemArray>|shell|SHCreateShellItemArray|Creates a Shell item array object. static PyObject *PySHCreateShellItemArray(PyObject *self, PyObject *args) { *************** *** 2876,2881 **** { "SHCreateDefaultContextMenu", PySHCreateDefaultContextMenu, 1}, // @pymeth SHCreateDefaultContextMenu| { "SHCreateDefaultExtractIcon", PySHCreateDefaultExtractIcon, 1}, // @pymeth SHCreateDefaultExtractIcon|Creates a standard icon extractor, whose defaults can be further configured via the IDefaultExtractIconInit interface. ! { "SHCreateShellFolderView", PySHCreateShellFolderView, 1}, // @pymeth SHCreateShellFolderView| ! { "SHCreateShellItemArray", PySHCreateShellItemArray, 1}, // @pymeth SHCreateShellItemArray| { "SHCreateShellItemArrayFromDataObject", PySHCreateShellItemArrayFromDataObject, 1}, // @pymeth SHCreateShellItemArrayFromDataObject| { "SHCreateShellItemArrayFromIDLists", PySHCreateShellItemArrayFromIDLists, 1}, // @pymeth SHCreateShellItemArrayFromIDLists| --- 2876,2881 ---- { "SHCreateDefaultContextMenu", PySHCreateDefaultContextMenu, 1}, // @pymeth SHCreateDefaultContextMenu| { "SHCreateDefaultExtractIcon", PySHCreateDefaultExtractIcon, 1}, // @pymeth SHCreateDefaultExtractIcon|Creates a standard icon extractor, whose defaults can be further configured via the IDefaultExtractIconInit interface. ! { "SHCreateShellFolderView", PySHCreateShellFolderView, 1}, // @pymeth SHCreateShellFolderView|Creates a new instance of the default Shell folder view object. ! { "SHCreateShellItemArray", PySHCreateShellItemArray, 1}, // @pymeth SHCreateShellItemArray|Creates a Shell item array object. { "SHCreateShellItemArrayFromDataObject", PySHCreateShellItemArrayFromDataObject, 1}, // @pymeth SHCreateShellItemArrayFromDataObject| { "SHCreateShellItemArrayFromIDLists", PySHCreateShellItemArrayFromIDLists, 1}, // @pymeth SHCreateShellItemArrayFromIDLists| |