Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

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);

.
Documentation
[GetSystemInfo] on MSDN

kernel32

.

        GetSystemInfo(si)

.

        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);

.
Summary
.

GetSystemInfo

.

    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);

.
Documentation
[GetSystemInfo] on MSDN
.

        GetSystemInfo(si)

.

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)

.

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)

.

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)


 
Access PInvoke.net directly from VS: