Commit f2496382 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

avrt: Use BOOL type where appropriate.

parent 6f3d942f
......@@ -86,11 +86,11 @@ HANDLE WINAPI AvSetMmThreadCharacteristicsW(LPCWSTR TaskName, LPDWORD TaskIndex)
BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
{
FIXME("(%p): stub\n", AvrtHandle);
return 1;
return TRUE;
}
BOOL WINAPI AvSetMmThreadPriority(HANDLE AvrtHandle, AVRT_PRIORITY prio)
{
FIXME("(%p)->(%u) stub\n", AvrtHandle, prio);
return 1;
return TRUE;
}
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