Added NtPowerInformation stub.
This commit is contained in:
parent
f44c1f7e13
commit
eff4087da1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue