Commit 8cfdaa45 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

mstask: Implement ITask::GetFlags().

parent 747cd087
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment