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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

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