Desktop Functions: Smart Device Functions:
|
Search Results for "getsysteminfo" in [All]coredll
public static extern void GetSystemInfo(out SYSTEM_INFO lpSystemInfo);
Declare Function GetSystemInfo Lib "coredll.dll" (ByVal lpSystemInfo AS SYSTEM_INFO)
[DllImport("kernel32", EntryPoint = "GetSystemInfo", SetLastError = true)]
public static extern void GetSystemInfo30(out SYSTEM_INFO_WCE30 pSi);
[DllImport("kernel32", EntryPoint = "GetSystemInfo", SetLastError = true)]
public static extern void GetSystemInfo50(out SYSTEM_INFO_WCE50 pSi);
GetSystemInfo50(out si);
GetSystemInfo30(out si); kernel32
GetSystemInfo(si) 3: CreateFile
Win32API.GetSystemInfo(ref sysinfo);
internal static extern void GetSystemInfo([MarshalAs(UnmanagedType.Struct)] ref SYSTEM_INFO lpSystemInfo);
Win32API.GetSystemInfo(ref sysinfo);
internal static extern void GetSystemInfo([MarshalAs(UnmanagedType.Struct)] ref SYSTEM_INFO lpSystemInfo);
internal static extern void GetSystemInfo(ref SYSTEM_INFO lpSystemInfo);
GetSystemInfo(ref sysInfo); public static extern void GetSystemInfo(out SYSTEM_INFO Info);
NativeMethods.GetSystemInfo(out info);
GetSystemInfo(si) 8: ReadFile It is recommended that VirtualAlloc be used to allocate an unmanaged block of memory for use with this function. The array of file segments can be effeciently constructed without heap allocation using stackalloc. You will need to get the system's page size through a call to GetSystemInfo.
// The size of each buffer (ASize) must be a multiple of the system's page size (get using GetSystemInfo) 9: WriteFile It is recommended that VirtualAlloc be used to allocate an unmanaged block of memory for use with this function. The array of file segments can be effeciently constructed without heap allocation using stackalloc. You will need to get the system's page size through a call to GetSystemInfo.
// The size of each buffer (ASize) must be a multiple of the system's page size (get using GetSystemInfo) 10: WriteFileGather It is recommended that VirtualAlloc be used to allocate an unmanaged block of memory for use with this function. The array of file segments can be effeciently constructed without heap allocation using stackalloc. You will need to get the system's page size through a call to GetSystemInfo.
// The size of each buffer (ASize) must be a multiple of the system's page size (get using GetSystemInfo) |