I wonder if there's anyone out there who might be able to help?
I have a DLL (libapr.dll) with functions declared like _apr_array_make@12
For Max, I can simply create a extern like
However, I also have some C code that needs to call into the DLL, but when I compile an application, it complains that it can't find "apr_array_make":
Not sure what to do now...
I kind of need some C code, as I can't get parts working in Max-only, but the C can't seem to "find" the correct method in the .dll
As a side note, I created a .a of the dll using pexports and dlltool.
Anyone got any bright ideas please?
:o)
I have a DLL (libapr.dll) with functions declared like _apr_array_make@12
For Max, I can simply create a extern like
Extern Function apr_array_make( ......) = "apr_array_make@12" End Extern
However, I also have some C code that needs to call into the DLL, but when I compile an application, it complains that it can't find "apr_array_make":
(svn_c_stuff.c.debug.win32.x86.o)(.text+0x28e):svn_c_stuff.c: undefined reference to `apr_array_make'
Not sure what to do now...
I kind of need some C code, as I can't get parts working in Max-only, but the C can't seem to "find" the correct method in the .dll
As a side note, I created a .a of the dll using pexports and dlltool.
Anyone got any bright ideas please?
:o)