Some questions , maybe any of you experts could help a newbie :) My external is working properly, jut i'm not sure if i cause some memoryleaks with it or not :D
1, If I'm the owner ("noun") of the dictionary object and I "dictionary_clear(dict)" it, it says in the documentation: "This method will free the objects in the dictionary." Is this mean all included "subdictionaries" appended to it will get a "object_free(subdict)" so those will be unregistered and the memory of the subdicts will be freed up too? No need to handle them by myself?
2, If (1) is true, then should i call "dictionary_clear()" before "object_free(dict)"? or "object_free(dict)" will clear it's subdictionary contect by itself?
3, If (1) is true and all I want to do is to create and output a dictionary with subdictionaries inside my object, then should i keep track the subdictionary pointers and names, or if they are registered and appended to the main ("dictionary_appenddictionary()") they will be deleted automatically when i send "dictionary_clear()" or "object_free(dict)" to the main dictionary?
thanx for your help in advance!
Kevin