Jan 8, 2004 #1 ARCITS Programmer Joined Apr 4, 2002 Messages 99 Location 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 Joined Mar 30, 2001 Messages 1,440 Location 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