Does anyone have a working example of how to create a library with CreateLibraryTags?? I have successfully created two exec Interfaces (with MakeInterfaceTags), but when I call CreateLibraryTags, I get a NULL pointer no matter how hard I try... Help?
Thu, 2013-01-24 22:34
#1
CreateLibraryTags
This is what I have in cdplayer.library:
The libCreateTags is what is passed to CreateLibrary().
Note that unless you are creating a library in memory yourself you do not need to call CreateLibrary(Tags)() explicitly.
Note also that CreateLibrary() handles calling MakeInterface() for you for all the interfaces you specified with the CLT_Interfaces tag.
Thanks, I solved the problem: I was creating the Interfaces with MakeInterface instead of just passing the Tags to CreateLibrary... Doh!