avrt: Add stub for AvSetMmThreadPriority.

This commit is contained in:
Maarten Lankhorst 2010-02-04 13:27:09 +01:00 committed by Alexandre Julliard
parent 678cb27b3a
commit 1879912939
2 changed files with 7 additions and 1 deletions

View File

@ -11,4 +11,4 @@
@ stub AvSetMmMaxThreadCharacteristicsW @ stub AvSetMmMaxThreadCharacteristicsW
@ stdcall AvSetMmThreadCharacteristicsA(str ptr) @ stdcall AvSetMmThreadCharacteristicsA(str ptr)
@ stdcall AvSetMmThreadCharacteristicsW(wstr ptr) @ stdcall AvSetMmThreadCharacteristicsW(wstr ptr)
@ stub AvSetMmThreadPriority @ stdcall AvSetMmThreadPriority(ptr long)

View File

@ -90,3 +90,9 @@ BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
FIXME("(%p): stub\n", AvrtHandle); FIXME("(%p): stub\n", AvrtHandle);
return 1; return 1;
} }
BOOL WINAPI AvSetMmThreadPriority(HANDLE AvrtHandle, AVRT_PRIORITY prio)
{
FIXME("(%p)->(%u) stub\n", AvrtHandle, prio);
return 1;
}