Commit cfd8bb8c authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Added stub for GetDevicePowerState().

parent d5897a64
......@@ -384,7 +384,7 @@
@ stdcall GetDefaultCommConfigA(str ptr long) GetDefaultCommConfigA
@ stdcall GetDefaultCommConfigW(wstr ptr long) GetDefaultCommConfigW
@ stub GetDefaultSortkeySize
@ stub GetDevicePowerState
@ stdcall GetDevicePowerState(long ptr) GetDevicePowerState
@ stdcall GetDiskFreeSpaceA(str ptr ptr ptr ptr) GetDiskFreeSpaceA
@ stdcall GetDiskFreeSpaceW(wstr ptr ptr ptr ptr) GetDiskFreeSpaceW
@ stdcall GetDriveTypeA(str) GetDriveTypeA
......
......@@ -311,3 +311,12 @@ BOOL WINAPI GetQueuedCompletionStatus(
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/******************************************************************************
* GetDevicePowerState (KERNEL32.@)
*/
BOOL WINAPI GetDevicePowerState(HANDLE hDevice, BOOL* pfOn)
{
FIXME("(hDevice %p pfOn %p): stub\n", hDevice, pfOn);
return TRUE; /* no information */
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment