I have a project that relies in the OpenSSL library that compiles fine on the Linux environment, but I am having trouble having it compile on MS Visual Studio 2015.
I have many errors that look something like "_ specifies undefined struct/union _" where the first blank is a local variable and the second is a reference to something from OpenSSL. I believe that the error is currently coming from not having a proper link to the library from my IDE.
I have downloaded a precompiled version from http://slproweb.com/products/Win32OpenSSL.html and I have set the project's 'Additional Include Directories' to OpenSSL-Win64/include, 'Additional Library Directories' to OpenSSl-Win64/lib, and 'Additional Dependencies' to libssl.lib. - all files or directories that I have gotten through the precompiled package.
Does anyone who has had experience using OpenSSl for Visual Studio projects have any idea as to what my problem is?
Thank you!