IIsolatedProcessLauncher::AllowSetForegroundAccess 方法 (isolatedapplauncher.h)
允許遠端視窗反映容器中發生的內容。
語法
HRESULT AllowSetForegroundAccess(
UINT pid
);
參數
pid
處理序識別碼。
傳回值
傳回 HRESULT 成功或錯誤碼。
備註
警告
這是已被取代的 API。
範例
下列範例會示範如何使用 AllowSetForegroundAccess
方法。
wil::com_ptr<IIsolatedProcessLauncher> isolatedProcessLauncher;
THROW_IF_FAILED(CoCreateInstance(
CLSID_IsolatedAppLauncher,
NULL,
CLSCTX_LOCAL_SERVER,
IID_PPV_ARGS(&isolatedProcessLauncher)));
THROW_IF_FAILED(isolatedProcessLauncher->AllowSetForegroundAccess(GetCurrentProcessId()));
規格需求
標頭 | isolatedapplauncher.h |