MEMORYSTATUS (Structures)
Last changed: Pieter Huizinga-89.98.143.220

.
Summary
Contains information about the current state of both physical and virtual memory.

C# Definition:

private struct MEMORYSTATUS
{
    public int Length;
    public int MemoryLoad;
    public UIntPtr TotalPhysical;
    public UIntPtr AvailablePhysical;
    public UIntPtr TotalPageFile;
    public UIntPtr AvailablePageFile;
    public UIntPtr TotalVirtual;
    public UIntPtr AvailableVirtual;
}

VB Definition:

Structure MEMORYSTATUS
   Public Length As Integer
   Public MemoryLoad As Integer
   Public TotalPhysical As UIntPtr
   Public AvailablePhysical As UIntPtr
   Public TotalPageFile As UIntPtr
   Public AvailablePageFile As UIntPtr
   Public TotalVirtual As UIntPtr
   Public AvailableVirtual As UIntPtr
End Structure

User-Defined Field Types:

None.

Notes:

Also see MEMORYSTATUSEX.

Documentation