[pywin32-checkins] pywin32/com/win32comext/shell/src shell.cpp, 1.75, 1.76
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2010-05-18 18:57:40
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/shell/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv12570 Modified Files: shell.cpp Log Message: Reverse order in which IExtractIcon and IExtractIconW are registered. When UNICODE is defined, both IID's are the same, and the registration function iterates backward, so whichever is first wins out. Index: shell.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/shell/src/shell.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** shell.cpp 25 Jan 2010 23:32:29 -0000 1.75 --- shell.cpp 18 May 2010 18:57:32 -0000 1.76 *************** *** 3255,3260 **** PYCOM_INTERFACE_SERVER_ONLY(ContextMenu2), PYCOM_INTERFACE_SERVER_ONLY(ContextMenu3), - PYCOM_INTERFACE_FULL(ExtractIcon), PYCOM_INTERFACE_FULL(ExtractIconW), PYCOM_INTERFACE_CLIENT_ONLY (ExtractImage), PYCOM_INTERFACE_FULL(ShellExtInit), --- 3255,3260 ---- PYCOM_INTERFACE_SERVER_ONLY(ContextMenu2), PYCOM_INTERFACE_SERVER_ONLY(ContextMenu3), PYCOM_INTERFACE_FULL(ExtractIconW), + PYCOM_INTERFACE_FULL(ExtractIcon), PYCOM_INTERFACE_CLIENT_ONLY (ExtractImage), PYCOM_INTERFACE_FULL(ShellExtInit), |