diff options
Diffstat (limited to 'Source/kwsys/SystemInformation.cxx')
-rw-r--r-- | Source/kwsys/SystemInformation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/SystemInformation.cxx b/Source/kwsys/SystemInformation.cxx index 5720dff..ee762c7 100644 --- a/Source/kwsys/SystemInformation.cxx +++ b/Source/kwsys/SystemInformation.cxx @@ -2230,13 +2230,13 @@ int SystemInformationImplementation::QueryMemory() #elif _WIN32 #if _MSC_VER < 1300 MEMORYSTATUS ms; + GlobalMemoryStatus(&ms); #define MEM_VAL(value) dw##value #else MEMORYSTATUSEX ms; + GlobalMemoryStatusEx(&ms); #define MEM_VAL(value) ull##value #endif - GlobalMemoryStatusEx(&ms); - unsigned long tv = ms.MEM_VAL(TotalVirtual); unsigned long tp = ms.MEM_VAL(TotalPhys); unsigned long av = ms.MEM_VAL(AvailVirtual); |