Where is a good place to post feature requests? I was thinking maybe the bug report forum, but it isn't a bug. I also thought I could PM it to IanM, but alas the forums don't have private messaging. And I ventured over to the google code page where, once again, there is an "Issues" submitter, but no feature request.
I spent quite a bit of time trying to find out the memory usage of my game. I know I can just CTRL+ALT+DEL and look at it, but I would like my game to be able to check it as well. The current SMEM available commands don't really help at all.
I found that psapi.dll has a GetProcessMemoryInfo function, but I am horrible at figuring out how to call external DLLs. I also found out that windows 7 doesn't use psapi.dll anymore for memory functions and that they were moved to kernel32.dll, so my method would also have to check the OS first... Basically I gave up.