kernel32: Add stub for PowerClearRequest.

This commit is contained in:
Sebastian Lackner 2015-04-07 03:19:41 +02:00 committed by Alexandre Julliard
parent 25505995af
commit 4ae0ef44d2
2 changed files with 12 additions and 1 deletions

View File

@ -1134,7 +1134,7 @@
@ stdcall PeekConsoleInputW(ptr ptr long ptr)
@ stdcall PeekNamedPipe(long ptr long ptr ptr ptr)
@ stdcall PostQueuedCompletionStatus(long long ptr ptr)
# @ stub PowerClearRequest
@ stdcall PowerClearRequest(long long)
@ stdcall PowerCreateRequest(ptr)
@ stdcall PowerSetRequest(long long)
@ stdcall PrepareTape(ptr long long)

View File

@ -122,3 +122,14 @@ BOOL WINAPI PowerSetRequest(HANDLE request, POWER_REQUEST_TYPE type)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* PowerClearRequest (KERNEL32.@)
*/
BOOL WINAPI PowerClearRequest(HANDLE request, POWER_REQUEST_TYPE type)
{
FIXME("(%p, %u): stub\n", request, type);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}