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 "MEMORY_BASIC_INFORMATION" in [All]

kernel32

.

    static extern int VirtualQueryEx(IntPtr hProcess, IntPtr lpAddress, out MEMORY_BASIC_INFORMATION lpBuffer, uint dwLength);

.

    Public Shared Function VirtualQueryEx(Byval hProcess As IntPtr, Byval lpAddress As IntPtr, Byref lpBuffer As MEMORY_BASIC_INFORMATION, Byval dwLength As UInt32)

.

MEMORY_BASIC_INFORMATION

.

    public struct MEMORY_BASIC_INFORMATION

.

c# usefull Flags for MEMORY_BASIC_INFORMATION

.

     MEMORY_BASIC_INFORMATION m;

.

     int result = VirtualQueryEx(System.Diagnostics.Process.GetCurrentProcess().Handle, (IntPtr)address, out m, (uint)Marshal.SizeOf(typeof(MEMORY_BASIC_INFORMATION)));

.

    static extern int VirtualQueryEx(IntPtr hProcess, IntPtr lpAddress, out MEMORY_BASIC_INFORMATION lpBuffer, uint dwLength);

.

MEMORY_BASIC_INFORMATION

.

    public struct MEMORY_BASIC_INFORMATION

.

    public struct MEMORY_BASIC_INFORMATION64

.

c# usefull Flags for MEMORY_BASIC_INFORMATION

.

    MEMORY_BASIC_INFORMATION m;

.

    int result = VirtualQueryEx(System.Diagnostics.Process.GetCurrentProcess().Handle, (IntPtr)address, out m, (uint)Marshal.SizeOf(typeof(MEMORY_BASIC_INFORMATION)));

Structures

.

    public struct MEMORY_BASIC_INFORMATION

.
Documentation
[MEMORY_BASIC_INFORMATION] on MSDN

 
Access PInvoke.net directly from VS: