I\'m using libcurl and am getting the following sort of linker errors in VC++ 10.
1>main.obj : error LNK2019: unresolved external symbol __imp__curl_easy_
As Suma mentioned,
is normally accompanied by
. Therefore if you get such error messages like
Error LNK2019 unresolved external symbol __imp__
referenced in function ...
it is highly recommended to check the Linker settings of your project.
In Visual Studio, just go for your project to
Properties -> Linker -> General
and check under entry Additional Library Directories
, if the path to
is defined there. If not, just add it.
Then check and define on
Properties -> Linker -> Input
under entry Additional Dependencies
the probable missing
.
The error message should disappear now.
Hope it helps?