A
Alex
Dear list,
I have a Dll it's .h and .lib files which have been compiled under Borland.
I followed the steps indicated to transform the lib to a lib file
readable by MSVC++
IMPDEF.EXE test.def test.dll
link /lib /def:test.def
The lib file is now accepted by the compiler. But I still get
unreferenced error link like this one
error LNK2001: unresolved external symbol "__declspec(dllimport) public:
bool __thiscall MyClass::IFC(void)" (__imp_?IFC@MyClass@@QAE_NXZ)
I searched all over google, and only found cases were there is a number
after the @ sign, but could not figure out what to do with this. I also
checked the MS KB q131313 article but it didn't create a valid lib file
(the functions were missing)
can anybody give me a hint please ?
Yours
Alex
I have a Dll it's .h and .lib files which have been compiled under Borland.
I followed the steps indicated to transform the lib to a lib file
readable by MSVC++
IMPDEF.EXE test.def test.dll
link /lib /def:test.def
The lib file is now accepted by the compiler. But I still get
unreferenced error link like this one
error LNK2001: unresolved external symbol "__declspec(dllimport) public:
bool __thiscall MyClass::IFC(void)" (__imp_?IFC@MyClass@@QAE_NXZ)
I searched all over google, and only found cases were there is a number
after the @ sign, but could not figure out what to do with this. I also
checked the MS KB q131313 article but it didn't create a valid lib file
(the functions were missing)
can anybody give me a hint please ?
Yours
Alex