avrt: Add AvQuerySystemResponsiveness stub.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2017-08-28 15:48:20 +03:00 committed by Alexandre Julliard
parent 3427fbb33e
commit dfa1815c02
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
@ stub AvQuerySystemResponsiveness
@ stdcall AvQuerySystemResponsiveness(long ptr)
@ stdcall AvRevertMmThreadCharacteristics(long)
@ stub AvRtCreateThreadOrderingGroup
@ stub AvRtCreateThreadOrderingGroupExA

View File

@ -83,6 +83,12 @@ HANDLE WINAPI AvSetMmThreadCharacteristicsW(LPCWSTR TaskName, LPDWORD TaskIndex)
return (HANDLE)0x12345678;
}
BOOL WINAPI AvQuerySystemResponsiveness(HANDLE AvrtHandle, ULONG *value)
{
FIXME("(%p, %p): stub\n", AvrtHandle, value);
return FALSE;
}
BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
{
FIXME("(%p): stub\n", AvrtHandle);