18 lines
398 B
C#
18 lines
398 B
C#
namespace CZGL.SystemInfo
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public struct MEMORYSTATUS
|
|
{
|
|
public uint dwLength;
|
|
public uint dwMemoryLoad;
|
|
public uint dwTotalPhys;
|
|
public uint dwAvailPhys;
|
|
public uint dwTotalPageFile;
|
|
public uint dwAvailPageFile;
|
|
public uint dwTotalVirtual;
|
|
public uint dwAvailVirtual;
|
|
}
|
|
}
|