Whenever I create ab object:
ScriptRecordData args;
I get:
error LNK2001: unresolved external symbol "__declspec(dllimport) struct adobe::version_1::new_delete_t const adobe::version_1::local_new_delete_g" (__imp_?local_new_delete_g@version_1@adobe@@3Unew_delete_t@12@B)
1>..\Release\SDK\PictureIcon.sdk.pln : fatal error LNK1120: 1 unresolved externals
1> The command exited with code 1120.
The only way I could get it to work is:
ScriptRecordData* args = new ScriptRecordData();
without calling the destructor with: delete args;
Does this sound familiar. It seems to me that the implementation of the descructor is missing..
Thank you.
Regards,
Reinhard