Jan 8, 2004 #1 ARCITS Programmer Apr 4, 2002 99 GB Are there any commands available to check free memory, the size of the heap and stack, etc? Thanks
Jan 8, 2004 #2 Zyrenthian Programmer Mar 30, 2001 1,440 US MEMORYSTATUS MemStat; MemStat.dwLength = sizeof(MEMORYSTATUS); GlobalMemoryStatus(&MemStat); then look at dwAvailPhys and other member variables of the structure. Matt Upvote 0 Downvote
MEMORYSTATUS MemStat; MemStat.dwLength = sizeof(MEMORYSTATUS); GlobalMemoryStatus(&MemStat); then look at dwAvailPhys and other member variables of the structure. Matt