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
Post a Comment