Desktop Functions: Smart Device Functions:
|
Search Results for "NtQuerySystemInformation" in [All]kernel321: GetProcessId To use with an handle to a thread kernel object. (Possibly obtained by NtQuerySystemInformation with SYSTEM_INFORMATION_CLASS.SystemHandleInformation) To use with an handle to a thread kernel object. (Possibly obtained by NtQuerySystemInformation with SYSTEM_INFORMATION_CLASS.SystemHandleInformation) ntdll
public static extern NtStatus NtQuerySystemInformation(SYSTEM_INFORMATION_CLASS InfoClass, IntPtr Info, uint Size, out uint Length);
Declare Function NtQuerySystemInformation Lib "ntdll.dll" (TODO) As TODO
public static IntPtr NtQuerySystemInformation(SYSTEM_INFORMATION_CLASS infoClass, uint infoLength = 0)
var result = NtQuerySystemInformation(infoClass, infoPtr, infoLength, out infoLength);
result = (UInt32)NativeMethods.NtQuerySystemInformation(NativeMethods.SYSTEM_INFORMATION_CLASS.SystemMemoryListInformation, buff, result, out returnSize); This works in the same manner as NtQuerySystemInformation. |