Open GoogleCodeExporter opened 9 years ago
The most likely problem is that you do not link to the correct libcurl library
or you haven't compiled the library correctly for Windows.
Try to find a tutorial on the web on how to create a static library for curl
for Windows and then link your application to it.
The dynamic link library from twitcurl-read-only/libtwitcurl/lib/libcurl.lib
doesn't work in Windows?
Original comment by alex.bu...@gmail.com
on 13 Sep 2012 at 6:40
This happened to me also. I looked up what's there in libcurl_a.lib ( static
library version. The symbol names inside are : curl_easy_setopt,
curl_easy_perform etc.
But the Visual Studio 2010 error message says __imp__curl...
So, probably they couldn't be found due to the decorated name.
Original comment by jongamp...@gmail.com
on 30 Jun 2014 at 5:53
I solved my case. I used static build of libcurl. Then the decorated names are
not starting with __imp_. So, using dumpbin, which is from Visual Studio, I
took a look at symbols in the library. There I could check that the decorated
name is not like __imp_.
So, by searching one of the troubled function in the curl header file, I
figured out CURL_STATIC_LIB or something like that should have been used in the
case of static lib.
Only dll version looks to have those __imp_ prefix.
Original comment by jongamp...@gmail.com
on 30 Jun 2014 at 7:37
Original issue reported on code.google.com by
bie...@student.breckschool.org
on 1 Aug 2012 at 4:23