Author: gadamopoulos
Date: Thu Nov 7 13:19:23 2013
New Revision: 60879
URL: http://svn.reactos.org/svn/reactos?rev=60879&view=rev
Log:
[shell32]
- Do not use HIMAGELIST_QueryInterface which is exported from vista comctl32. The replacement code is taken from HIMAGELIST_QueryInterface and its fine to use it, as is safe to assume that an HIMAGELIST is a IImageList*
- Allows us to use comctl32 5.82 from win2003 and boot to desktop
Modified:
trunk/reactos/dll/win32/shell32/shellord.cpp
Modified: trunk/reactos/dll/win32/shell32/shellord.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shellord…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shellord.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/shellord.cpp [iso-8859-1] Thu Nov 7 13:19:23 2013
@@ -2269,7 +2269,9 @@
/* Get the interface for the new image list */
if (hNew)
{
- ret = HIMAGELIST_QueryInterface(hNew, riid, ppv);
+ IImageList *imageList = (IImageList*) hNew;
+ ret = imageList->QueryInterface(riid, ppv);
+
ImageList_Destroy(hNew);
}
Author: gadamopoulos
Date: Wed Nov 6 10:56:20 2013
New Revision: 60874
URL: http://svn.reactos.org/svn/reactos?rev=60874&view=rev
Log:
[shell32]
- Open the Admin tools folder when we click Manage in the context menu of my computer for now as we don't have mmc yet
Modified:
trunk/reactos/dll/win32/shell32/res/rgs/mycomputer.rgs
Modified: trunk/reactos/dll/win32/shell32/res/rgs/mycomputer.rgs
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/res/rgs/…
==============================================================================
--- trunk/reactos/dll/win32/shell32/res/rgs/mycomputer.rgs [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/res/rgs/mycomputer.rgs [iso-8859-1] Wed Nov 6 10:56:20 2013
@@ -30,7 +30,7 @@
}
'Manage'
{
- 'command' = e '%%windir%%\system32\mmc.exe /s %%windir%%\system32\compmgmt.msc'
+ 'command' = e 'explorer.exe /n,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{D20EA4E1-3957-11d2-A40B-0C5020524153}'
val 'SuppressionPolicy' = d '&H4000003c'
}
}