I am new in c/c++.... Recently I am trying to compile a program using libCurl. But it shows me these errors:
Error: Error: Unresolved external '_curl_easy_init' referenced from D:\BC5\BIN\HTTP-POST.OBJ
Error: Error: Unresolved external '_curl_easy_setopt' referenced from D:\BC5\BIN\HTTP-POST.OBJ
Error: Error: Unresolved external '_curl_easy_perform' referenced from D:\BC5\BIN\HTTP-POST.OBJ
Error: Error: Unresolved external '_curl_easy_cleanup' referenced from D:\BC5\BIN\HTTP-POST.OBJ
I have searched on net about these errors and came to know that this is linker error. I found many tutorials about that prob. But I can not understand that.
Note that I have libcurl.dll and lots of header file , I have copied header files in D:\BC5\INCLUDE.... Now what should I do?
You need an import library for your DLL. You can use the implib utility provided by borland to create one from the DLL. Include the resulting .lib in your project and the linker errors should go away. If it start complaining at runtime make sure the DLL is in the same folders as your executable.