mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
[MPLAY32]
* Remove from build while it hangs VS2013. [EXPLORER-NEW] * Hack it to work on Windows 7, even if an existing explorer is already running. * Move start menu popup to its own function, for easier debugging. * Maybe-fix a drawing issue if no theme is selected. [RSHELL] * Added wrapper for CMenuBand * The cmake script should not use a hardcoded path * Better name for the log file. CORE-7886 svn path=/branches/shell-experiments/; revision=62134
This commit is contained in:
parent
ea6aff329b
commit
edd5a38091
10 changed files with 450 additions and 44 deletions
|
@ -270,7 +270,7 @@ CStartMenu_Constructor(
|
|||
if (FAILED(hr))
|
||||
return NULL;
|
||||
|
||||
#if 1
|
||||
#if 0
|
||||
hr = CoCreateInstance(CLSID_MenuBandSite,
|
||||
NULL,
|
||||
CLSCTX_INPROC_SERVER,
|
||||
|
@ -281,10 +281,14 @@ CStartMenu_Constructor(
|
|||
if (FAILED(hr))
|
||||
return NULL;
|
||||
|
||||
#if 0
|
||||
hr = CoCreateInstance(CLSID_MenuDeskBar,
|
||||
NULL,
|
||||
CLSCTX_INPROC_SERVER,
|
||||
IID_PPV_ARG(IDeskBar, &pDeskBar));
|
||||
#else
|
||||
hr = CMenuDeskBar_Constructor(IID_PPV_ARG(IDeskBar, &pDeskBar));
|
||||
#endif
|
||||
if (FAILED(hr))
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue