mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
taskschd: Return success from Principal_put_RunLevel.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49877
This commit is contained in:
parent
6ec977aa00
commit
3db38ea7f4
1 changed files with 1 additions and 1 deletions
|
@ -1620,7 +1620,7 @@ static HRESULT WINAPI Principal_get_RunLevel(IPrincipal *iface, TASK_RUNLEVEL_TY
|
|||
static HRESULT WINAPI Principal_put_RunLevel(IPrincipal *iface, TASK_RUNLEVEL_TYPE run_level)
|
||||
{
|
||||
FIXME("%p,%u: stub\n", iface, run_level);
|
||||
return E_NOTIMPL;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const IPrincipalVtbl Principal_vtbl =
|
||||
|
|
Loading…
Reference in a new issue