actionscript - Are Objects created in an AIR native extension garbage collected? (desktop C++) -


if in ane this:

freobject createobject(frecontext ctx, void* funcdata, uint32_t argc, freobject argv[]) {     freobject ret, exception;     frenewobject( (const uint8_t*)"object", 0, null, &ret, &exception );     return ret; } 

is returned object (ret) garbage collected air?


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -