GlobalMemoryStatusEx function kernel32

int GlobalMemoryStatusEx(
  1. Pointer<MEMORYSTATUSEX> lpBuffer
)

Retrieves information about the system's current usage of both physical and virtual memory.

BOOL GlobalMemoryStatusEx(
  LPMEMORYSTATUSEX lpBuffer
);

Implementation

int GlobalMemoryStatusEx(Pointer<MEMORYSTATUSEX> lpBuffer) =>
    _GlobalMemoryStatusEx(lpBuffer);