Ed Kelly wrote:
The actual problem is thus: unresolved external symbol framescore_tilde_setup framescore~.lib : fatal error LNK1120:1 unresolved externals
I put framescore_tilde_setup in the makefile explicitly - the same as for dspobj~.dll in the doc/6.externals folder.
For MSVC, not MinGW, you need to put __declspec(dllexport) in front of the declaration of framescore_tilde_setup in order for MSVC to export the name so the linker will find it.
Martin