From bf8ed70534c149a18ca2a9af50effdceb7e12b44 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 2 May 2008 17:36:08 -0400 Subject: BUG: really fix build on vs6 --- Source/kwsys/SystemInformation.cxx | 4 ++-- 1 file 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); -- cgit v0.12