Garbage Collection

BlitzPlus Forums/BlitzPlus Beginners Area/Garbage Collection

Mental Image(Posted 2007) [#1]
In another thread some time ago, I was advised that Blitz+ doesb't do automatic garbage collection. Could anyone give me any tips to make sure that there are no memory leaks or anything nasty when exiting a Blitz+ application, specifically something that has used a GUI.

I do things like freeing fonts, freeing created windows etc, but is there anything else I should do? I am assuming that any gadgets associated with windows are cleared when the windows are released, but what about memory to store graphics, images etc?

TIA


Matty(Posted 2007) [#2]
When you exit a blitzplus application all memory is released, you only need to worry about managing memory/resources while the program is running.