basically this ```#include <windows.h> MEMO...
# core
c
basically this
Copy code
#include <windows.h>

MEMORYSTATUSEX getTotalSystemMemory()
{
    MEMORYSTATUSEX status;
    status.dwLength = sizeof(status);
    GlobalMemoryStatusEx(&status);
    return status;
}
inside the
#ifdef