Desktop Functions: Smart Device Functions:
|
Search Results for "SYSTEM_INFO" in [All]Structures1: SYSTEM_INFO
kernel32
Dim si As New SYSTEM_INFO 3: CreateFile
Win32API.SYSTEM_INFO sysinfo = new Win32API.SYSTEM_INFO();
internal static extern void GetSystemInfo([MarshalAs(UnmanagedType.Struct)] ref SYSTEM_INFO lpSystemInfo);
internal struct SYSTEM_INFO
Win32API.SYSTEM_INFO sysinfo = new Win32API.SYSTEM_INFO();
internal static extern void GetSystemInfo([MarshalAs(UnmanagedType.Struct)] ref SYSTEM_INFO lpSystemInfo);
internal struct SYSTEM_INFO
internal static extern void GetNativeSystemInfo(ref SYSTEM_INFO lpSystemInfo);
Private Declare Sub GetNativeSystemInfo Lib "kernel32" (<MarshalAs(UnmanagedType.Struct)> ByRef lpSystemInfo As SYSTEM_INFO)
internal struct SYSTEM_INFO
internal static extern void GetNativeSystemInfo(ref SYSTEM_INFO lpSystemInfo);
internal static extern void GetSystemInfo(ref SYSTEM_INFO lpSystemInfo);
SYSTEM_INFO sysInfo = new SYSTEM_INFO(); 6: 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)
namespace System_Info public static extern void GetSystemInfo(out SYSTEM_INFO Info);
public struct SYSTEM_INFO_UNION
public struct SYSTEM_INFO
public SYSTEM_INFO_UNION CpuInfo;
NativeMethods.SYSTEM_INFO 10: IsWow64Process
Dim si As New SYSTEM_INFO ntdll
public static extern NtStatus NtQuerySystemInformation(SYSTEM_INFORMATION_CLASS InfoClass, IntPtr Info, uint Size, out uint Length); NtStatus, SYSTEM_INFORMATION_CLASS
public static IntPtr NtQuerySystemInformation(SYSTEM_INFORMATION_CLASS infoClass, uint infoLength = 0)
result = (UInt32)NativeMethods.NtQuerySystemInformation(NativeMethods.SYSTEM_INFORMATION_CLASS.SystemMemoryListInformation, buff, result, out returnSize);
static extern UInt32 NtSetSystemInformation(NtSystemInformation.SYSTEM_INFORMATION_CLASS InfoClass, IntPtr Info, UInt32 Length);
public static void SetSystemInformation(NtSystemInformation.SYSTEM_INFORMATION_CLASS InfoClass, IntPtr Info, UInt32 Length)
public enum SYSTEM_INFORMATION_CLASS
Declare Function SYSTEM_INFORMATION_CLASS Lib "ntdll.dll" (TODO) As TODO
result = (UInt32)NativeMethods.NtQuerySystemInformation(NativeMethods.SYSTEM_INFORMATION_CLASS.SystemMemoryListInformation, buff, result, out returnSize); coredll15: GetSystemInfo
public static extern void GetSystemInfo(out SYSTEM_INFO lpSystemInfo);
Declare Function GetSystemInfo Lib "coredll.dll" (ByVal lpSystemInfo AS SYSTEM_INFO) [SYSTEM_INFO] on MSDN
public struct SYSTEM_INFO_WCE30
public struct SYSTEM_INFO_WCE50
public static extern void GetSystemInfo30(out SYSTEM_INFO_WCE30 pSi);
public static extern void GetSystemInfo50(out SYSTEM_INFO_WCE50 pSi);
SYSTEM_INFO_WCE50 si;
SYSTEM_INFO_WCE30 si; |