IMetroMode is obsolete in Win8 RC
-
Sunday, June 03, 2012 11:44 AM
Hi,
I've upgraded to Windows 8 RC build 8400 + VS Pro 2012 RC
I see that there is no more IMetroMode
I'm trying to use IExecuteCommandHost instead (call GetUIMode) using CLSID_AppVisibilty (couldn't find CLSID_ExecuteCommandHost) and it fails in CoCreateInstance
Thanks,
Haim.
My code is:
IExecuteCommandHost *pImmersiveMode = NULL;
HRESULT hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);// COINIT_APARTMENTTHREADED - doesn't work
if(FAILED(hr))
{
return EMS_Invalid;
}
hr = CoCreateInstance(CLSID_
AppVisibility, nullptr, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&pImmersiveMode)); if(FAILED(hr))
{
return EMS_Invalid;
}
All Replies
-
Monday, June 04, 2012 1:16 PM
I've exactly the same problem. IMetroMode is no longer defined in Shobjidl.h
Martin
-
Tuesday, June 05, 2012 6:38 AM
I think next code should work:
{
#if (VER_PRODUCTBUILD >= 8400)
IAppVisibility *pImmersiveMode = NULL;
#else
IMetroMode *pImmersiveMode = NULL
#endif
if(NULL == pImmersiveMode)
{
// Create the immersive mode component
HRESULT hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
if(FAILED(hr))
return EMS_Invalid;
#if (VER_PRODUCTBUILD >= 8400)
hr = CoCreateInstance(CLSID_
AppVisibility, nullptr, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&pImmersiveMode)); #else
hr = CoCreateInstance(CLSID_
MetroMode, nullptr, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&pImmersiveMode)); #endif
if(FAILED(hr))
return EMS_Invalid;
}
I have a question regarding the meaning of GetAppVisibilityOnMonitor
What is the description of next monitor modes: MAV_APP_VISIBLE, MAV_UNKNOWN, MAV_NO_APP_VISIBLE
Thanks
Haim
- Marked As Answer by Amir_Pointgrab Thursday, June 07, 2012 7:25 AM
-
Tuesday, June 05, 2012 8:46 AMModerator
The document does not updated to have those APIs descriptions, I just know those APIs from this sample code: http://code.msdn.microsoft.com/windowsdesktop/Start-screen-visibility-b1a72059#content
I think this function is what you wanted.
Mike Zhang[MSFT]
MSDN Community Support | Feedback to us
- Edited by Mike Dos ZhangMicrosoft Contingent Staff, Moderator Wednesday, June 06, 2012 10:39 AM
- Marked As Answer by Amir_Pointgrab Thursday, June 07, 2012 7:25 AM
-
Tuesday, June 05, 2012 8:47 AM
Thank you very much. Your code has pointed me to the updated "Start screen visibility example"
http://code.msdn.microsoft.com/windowsdesktop/Start-screen-visibility-b1a72059
Thanks
Martin
-
Wednesday, June 06, 2012 10:39 AMModerator


