Dynamic linking in Visual Studio

Posted by ILya on Stack Overflow See other posts from Stack Overflow or by ILya
Published on 2010-04-13T15:10:55Z Indexed on 2010/04/13 15:13 UTC
Read the original article Hit count: 325

Filed under:
|
|
|
|

I have to link dynamically with OpenSSL libeay32.dll. I'm writing native c++ console application using Visual C++ Express 2008.

I'm including a header evp.h from OpenSSL distribution. Building and...:

error LNK2001: unresolved external symbol _EVP_aes_256_cbc
error LNK2001: unresolved external symbol _EVP_DecryptInit
error LNK2001: unresolved external symbol _EVP_CIPHER_CTX_init

How to make calls to libeay32.dll methods? I don't know where to specify it's filename

© Stack Overflow or respective owner

Related posts about dll

Related posts about c