This content has been marked as final.
Show 1 reply
-
1. Re: Creating C++ objects inside an exporter plugin (CS6 SDK)
Rallymax-forum Feb 21, 2013 4:05 PM (in response to nvenc4everyone)the adobe memory suite shouldn't be used for that sort of thing.
just use the new operator as you normally would.
the key is to store all the pointers to your dynamically allocated in the lRec (ie the private data) so that on EndInstance you can take responsibility for all of the delete(lRec->xxxxx) you need to do to properly clean up.

