Commit 18799129 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

avrt: Add stub for AvSetMmThreadPriority.

parent 678cb27b
......@@ -11,4 +11,4 @@
@ stub AvSetMmMaxThreadCharacteristicsW
@ stdcall AvSetMmThreadCharacteristicsA(str ptr)
@ stdcall AvSetMmThreadCharacteristicsW(wstr ptr)
@ stub AvSetMmThreadPriority
@ stdcall AvSetMmThreadPriority(ptr long)
......@@ -90,3 +90,9 @@ BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
FIXME("(%p): stub\n", AvrtHandle);
return 1;
}
BOOL WINAPI AvSetMmThreadPriority(HANDLE AvrtHandle, AVRT_PRIORITY prio)
{
FIXME("(%p)->(%u) stub\n", AvrtHandle, prio);
return 1;
}
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