mstask: Implement ITask::GetFlags().

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2018-05-11 12:36:34 +08:00 committed by Alexandre Julliard
parent 747cd087a9
commit 8cfdaa45bb
1 changed files with 4 additions and 2 deletions

View File

@ -489,8 +489,10 @@ static HRESULT WINAPI MSTASK_ITask_SetFlags(
static HRESULT WINAPI MSTASK_ITask_GetFlags(ITask *iface, DWORD *flags)
{
FIXME("(%p, %p): stub\n", iface, flags);
*flags = 0;
TaskImpl *This = impl_from_ITask(iface);
TRACE("(%p, %p)\n", iface, flags);
*flags = LOWORD(This->flags);
return S_OK;
}