avrt: Add stub for AvSetMmThreadPriority.
This commit is contained in:
parent
678cb27b3a
commit
1879912939
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue