Use a dll from a c++ program. (borland c++ builder and in general)

风流意气都作罢 提交于 2020-01-15 05:26:10

问题


I'm trying to use a dll, namely libcurl, with my program, but, it's not linking. Libcurl comes with .h files that I can include (takes care of dllimport), but then I guess I must specify which dll to actually use when linking somehow... How do I do that? I'm compiling with Borland C++ builder, but I really want to know how these things work in general...

EDIT: This is the code (straight c/p from curl homepage)

bool FTPGetFile::ConnectToFTP(string ftpServer){
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
    res = curl_easy_perform(curl);
    return true;
}else{
    return false;
}
} 

And here are the errors:

[Linker Error] Error: Unresolved external '_curl_easy_init' referenced from C:\PROJECTS\PC\TOOLBOX\DEBUG_BUILD\FTPGETFILE.OBJ
[Linker Error] Error: Unresolved external '_curl_easy_setopt' referenced from C:\PROJECTS\PC\TOOLBOX\DEBUG_BUILD\FTPGETFILE.OBJ
[Linker Error] Error: Unresolved external '_curl_easy_perform' referenced from C:\PROJECTS\PC\TOOLBOX\DEBUG_BUILD\FTPGETFILE.OBJ

EDIT 2: As per suggestion from joe_muc I have made the lib files with the implib tool and included them in the linker path. I still get the same errors.


回答1:


As mentioned, you will need the static .lib file that goes with the .dll which you run through implib and add the result lib file to your project.

If you have done that then:

  • You may need to use the stdcall calling convention. You didn't mention which version of Builder you are using, but it is usually under Project options - Advanced compiler - Calling convention.
  • You may need to enable MFC compatibility option.
  • It could be a name mangling issue (Project options - C++ compatiblity options).
  • Or generation underscores
  • Or advanced linker options "Case_insensitive-link" on or off

libcurl appears to be C code; but if it is C++, note that Microsoft and Borland classes are generally not compatible. There are supposed to be tricks to get them to work, but it is a real mess to deal with and I have never had success. C coded DLLs should work.




回答2:


There should be a program called IMPLIB.EXE in the bin or app directory for builder. Run that against the dll to create a .lib file.

edit: Online Docs




回答3:


Use "Depends.Exe" to browse the .DLL, and find the exact names of the functions that you want to use, then add the .lib file for the dll (or create it using borland's implib), and include the .lib file in your bpr project file, by right-clicking and adding it to the project. then at the top of your code, use __declspec(dllimport) to please the linker gods.




回答4:


Normally, if you are linking against a Windows DLL, you'll need to pass the name of either the DLL or the import library to the linker otherwise it won't be able to link the executable.

The error message you quote suggests that you will indeed need to specify either the DLL or the import library. When you built curl as a DLL, it probably created both a .lib and a .dll file. Point your linker at the .lib file and when you start up your application, make sure that the .dll file is in a directory that is in the path so the loader can find it.




回答5:


By far the most common solution is to use the import library (.lib) which you should get as part of building libcurl. This tells the (static) linker how to prepare the EXE for the dynamic loading.




回答6:


Have you tried adding the .h file to your project?



来源:https://stackoverflow.com/questions/367926/use-a-dll-from-a-c-program-borland-c-builder-and-in-general

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!