NtQuerySystemInformation function ntdll
Retrieves the specified system information.
NTSTATUS NtQuerySystemInformation(
[in] SYSTEM_INFORMATION_CLASS SystemInformationClass,
[in, out] PVOID SystemInformation,
[in] ULONG SystemInformationLength,
[out, optional] PULONG ReturnLength
);
Implementation
int NtQuerySystemInformation(
int SystemInformationClass,
Pointer SystemInformation,
int SystemInformationLength,
Pointer<Uint32> ReturnLength,
) => _NtQuerySystemInformation(
SystemInformationClass,
SystemInformation,
SystemInformationLength,
ReturnLength,
);