Commit eff4087d authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Added NtPowerInformation stub.

parent f44c1f7e
......@@ -532,3 +532,13 @@ NTSTATUS WINAPI NtDisplayString (
WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), string->Buffer, string->Length, 0, 0);
return 0;
}
/******************************************************************************
* NtPowerInformation [NTDLL]
*
*/
NTSTATUS WINAPI NtPowerInformation(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5)
{
FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub\n",x1,x2,x3,x4,x5);
return 0;
}
......@@ -993,3 +993,4 @@ type win32
983 stub _wtoi
984 stub _wtol
985 stub RtlSetPropertySetClassId
986 stdcall NtPowerInformation(long long long long long) NtPowerInformation
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