Added NtPowerInformation stub.

This commit is contained in:
Marcus Meissner 1999-12-10 03:27:15 +00:00 committed by Alexandre Julliard
parent f44c1f7e13
commit eff4087da1
2 changed files with 11 additions and 0 deletions

View File

@ -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;
}

View File

@ -993,3 +993,4 @@ type win32
983 stub _wtoi
984 stub _wtol
985 stub RtlSetPropertySetClassId
986 stdcall NtPowerInformation(long long long long long) NtPowerInformation