Hello,
Is there anyone who knows how to use a dll in Embedded Visual C++. I have a .dll file and a header file that contains the functions in the .dll.
How can I link the file.
I keep getting the error message:
TBF.obj : error LNK2019: unresolved external symbol __imp_ConnectTo referenced in function WinMain
ARMDbg/TBF.exe : fatal error LNK1120: 1 unresolved externals
In the header file under each function the following line is typed:
_declspec(dllimport) BOOL _cdecl ConnectTo(TCHAR *p_sComPort, BYTE p_iSpeed);
Thanx,
Pascal.
Is there anyone who knows how to use a dll in Embedded Visual C++. I have a .dll file and a header file that contains the functions in the .dll.
How can I link the file.
I keep getting the error message:
TBF.obj : error LNK2019: unresolved external symbol __imp_ConnectTo referenced in function WinMain
ARMDbg/TBF.exe : fatal error LNK1120: 1 unresolved externals
In the header file under each function the following line is typed:
_declspec(dllimport) BOOL _cdecl ConnectTo(TCHAR *p_sComPort, BYTE p_iSpeed);
Thanx,
Pascal.