kernel32: Add stub for PowerCreateRequest.

This commit is contained in:
Sebastian Lackner 2015-03-15 01:44:12 +01:00 committed by Alexandre Julliard
parent d3be42ab96
commit 966dd5074d
2 changed files with 12 additions and 1 deletions

View File

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

View File

@ -100,3 +100,14 @@ EXECUTION_STATE WINAPI SetThreadExecutionState(EXECUTION_STATE flags)
current = flags;
return old;
}
/***********************************************************************
* PowerCreateRequest (KERNEL32.@)
*/
HANDLE WINAPI PowerCreateRequest(REASON_CONTEXT *context)
{
FIXME("(%p): stub\n", context);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return INVALID_HANDLE_VALUE;
}