Changeset 14341 in vbox
- Timestamp:
- Nov 19, 2008 9:26:58 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/win/PerformanceWin.cpp
r12594 r14341 310 310 if (GlobalMemoryStatusEx(&mstat)) 311 311 { 312 *total = (ULONG)( mstat.ullTotalPhys / 10 00);313 *available = (ULONG)( mstat.ullAvailPhys / 10 00);312 *total = (ULONG)( mstat.ullTotalPhys / 1024 ); 313 *available = (ULONG)( mstat.ullAvailPhys / 1024 ); 314 314 *used = *total - *available; 315 315 }
Note:
See TracChangeset
for help on using the changeset viewer.