#ifdef NT #include #include #else
Looks like you have three #ifdef but only two #endif. Yeah, sorry. That was me adjusting things back before emailing. 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.
?
Ed
-> -> --> ---> -----> --------> -------------> r3search + praktik EK5perimenz
Win a Yahoo! Vespa NEW - Yahoo! Cars has 3 Vespa LX125s to be won Enter Now!
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
On Dec 5, 2005, at 6:00 PM, Martin Peach wrote:
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.
So you could either:
#ifdef _MSC_VER /* MSVC */ __declspec(dllexport) #endif
or
#ifndef __GNUC__ __declspec(dllexport) #endif
.hc
There is no way to peace, peace is the way.
-A.J. Muste