My guess is that the functions in libeay32.lib and ssleay32.lib are C-style functions and you are trying to access them as C++ functions, hence the name mangling, so force the external definitions to be extern "C" to fix it.
My guess is that the functions in libeay32.lib and ssleay32.lib are C-style functions and you are trying to access them as C++ functions, hence the name mangling, so force the external definitions to be extern "C" to fix it.
Pechugo66 (14th December 2010)
Bookmarks