lua 5.2.1 unresolved externals - c++

I'm using visual studio 2012 and when I try to compile, I get following errors:
Error 7 error LNK1120: 6 unresolved externals C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\Release\LuaTest.exe LuaTest
Error 4 error LNK2001: unresolved external symbol _lua_close C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Error 5 error LNK2001: unresolved external symbol _lua_pcallk C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Error 6 error LNK2001: unresolved external symbol _lua_settop C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Error 2 error LNK2001: unresolved external symbol _luaL_loadfilex C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Error 1 error LNK2001: unresolved external symbol _luaL_newstate C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Error 3 error LNK2001: unresolved external symbol _luaopen_base C:\Users\MS\Documents\Visual Studio 2012\Projects\LuaTest\LuaTest\main.obj LuaTest
Source code taken from
HERE.
Using following library version: lua-5.2.1_Win32_dll10_lib.zip
I tried different lua52.lib files, but with all of them I get these errors.
What could be wrong?

You are using Visual Studio 2012, but library files from here appealingly only support up to Visual Studio 2010.
Anyway, Lua is small and very easy to compile. I would really recommend you to include Lua source files in Visual Studio instead of libraries.

Related

OpenSSL Compile WinCE 6.0

I am trying to compile OpenSSL 0.9.8i with windows CE SDK Toradex CE600 with reference to steps defined in the link below
OpenSSL Compile WinCE
When running nmake -f ms\cedll.mak command getting many Link2001 Errors as below
Please Help me in resolving this errors.
OLDNAMES.lib(wcsdup.obj) : error LNK2001: unresolved external symbol _wcsdup
OLDNAMES.lib(strnicmp.obj) : error LNK2001: unresolved external symbol __strnicmp
OLDNAMES.lib(stricmp.obj) : error LNK2001: unresolved external symbol __stricmp
OLDNAMES.lib(setmode.obj) : error LNK2001: unresolved external symbol __setmode
OLDNAMES.lib(fileno.obj) : error LNK2001: unresolved external symbol __fileno
OLDNAMES.lib(strdup.obj) : error LNK2001: unresolved external symbol __strdup
OLDNAMES.lib(wcsdup.obj) : error LNK2001: unresolved external symbol __wcsdup
out32dll_ARMV4I\libeay32d.dll : fatal error LNK1120: 113 unresolved externals
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\ce\bin\x86_arm\link.EXE"' : return code '0x460'
Stop.
If you need to add SSL/TLS support to your application and don't have specific dependencies on openSSL, you may have a look at mbedTLS:
https://github.com/ARMmbed/mbedtls
I made a fork of an old version to build it for Windows Embedded Compact 2013:
https://github.com/VMinute/mbedtls
and it builds with almost no changes.

Where can I find detailed procedure for SWIG in Visual C++ of Win7?

I've tried with swig site documents but it says "_example" module name is not found.
I've tried with slideshare http://www.slideshare.net/e8xu/swig-hello-world but it's saying some linker error like as follows:
Error 36 error LNK2001: unresolved external symbol __imp___Py_NotImplementedStruct C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 26 error LNK2001: unresolved external symbol __imp___PyObject_GetDictPtr C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
and I've included python library in Linker additional libraries.
Error 32 error LNK2001: unresolved external symbol
Error 2 error LNK2001: unresolved external symbol __imp___PyObject_New C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 14 error LNK2001: unresolved external symbol __imp__Py_BuildValue C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 50 error LNK2001: unresolved external symbol __imp__Py_InitModule4 C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 27 error LNK2001: unresolved external symbol __imp__PyArg_ParseTuple C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 52 error LNK2001: unresolved external symbol __imp__PyArg_UnpackTuple C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 35 error LNK2001: unresolved external symbol __imp__PyBool_FromLong C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 39 error LNK2001: unresolved external symbol __imp__PyCapsule_GetPointer C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 51 error LNK2001: unresolved external symbol __imp__PyCapsule_Import C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 19 error LNK2001: unresolved external symbol __imp__PyCapsule_New C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 7 error LNK2001: unresolved external symbol __imp__PyDict_New C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 21 error LNK2001: unresolved external symbol __imp__PyDict_SetItem C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 47 error LNK2001: unresolved external symbol __imp__PyDict_SetItemString C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 38 error LNK2001: unresolved external symbol __imp__PyErr_Clear C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 48 error LNK2001: unresolved external symbol __imp__PyErr_Fetch C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 31 error LNK2001: unresolved external symbol __imp__PyErr_Occurred C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 4 error LNK2001: unresolved external symbol __imp__PyErr_Restore C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 36 error LNK2001: unresolved external symbol __imp__PyErr_SetString C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 25 error LNK2001: unresolved external symbol __imp__PyErr_WriteUnraisable C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 20 error LNK2001: unresolved external symbol __imp__PyExc_AttributeError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 49 error LNK2001: unresolved external symbol __imp__PyExc_IndexError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 6 error LNK2001: unresolved external symbol __imp__PyExc_IOError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 28 error LNK2001: unresolved external symbol __imp__PyExc_MemoryError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 23 error LNK2001: unresolved external symbol __imp__PyExc_OverflowError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 41 error LNK2001: unresolved external symbol __imp__PyExc_RuntimeError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 43 error LNK2001: unresolved external symbol __imp__PyExc_SyntaxError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 12 error LNK2001: unresolved external symbol __imp__PyExc_SystemError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 45 error LNK2001: unresolved external symbol __imp__PyExc_TypeError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 30 error LNK2001: unresolved external symbol __imp__PyExc_ValueError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 13 error LNK2001: unresolved external symbol __imp__PyExc_ZeroDivisionError C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 17 error LNK2001: unresolved external symbol __imp__PyInstance_NewRaw C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 15 error LNK2001: unresolved external symbol __imp__PyInt_AsLong C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 10 error LNK2001: unresolved external symbol __imp__PyInt_FromLong C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 37 error LNK2001: unresolved external symbol __imp__PyLong_AsLong C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 46 error LNK2001: unresolved external symbol __imp__PyLong_FromVoidPtr C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 44 error LNK2001: unresolved external symbol __imp__PyModule_AddObject C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 29 error LNK2001: unresolved external symbol __imp__PyModule_GetDict C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 3 error LNK2001: unresolved external symbol __imp__PyObject_Call C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 24 error LNK2001: unresolved external symbol __imp__PyObject_CallFunctionObjArgs C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 34 error LNK2001: unresolved external symbol __imp__PyObject_Free C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 16 error LNK2001: unresolved external symbol __imp__PyObject_GenericGetAttr C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 9 error LNK2001: unresolved external symbol __imp__PyObject_Init C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 40 error LNK2001: unresolved external symbol __imp__PyObject_IsTrue C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 33 error LNK2001: unresolved external symbol __imp__PyObject_Malloc C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 42 error LNK2001: unresolved external symbol __imp__PyString_ConcatAndDel C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 26 error LNK2001: unresolved external symbol __imp__PyString_Format C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 8 error LNK2001: unresolved external symbol __imp__PyString_FromFormat C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 1 error LNK2001: unresolved external symbol __imp__PyString_FromString C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 5 error LNK2001: unresolved external symbol __imp__PyTuple_New C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 11 error LNK2001: unresolved external symbol __imp__PyTuple_SetItem C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample
Error 18 error LNK2001: unresolved external symbol __imp__PyType_Ready C:\Users\Pachagad\Documents\Visual Studio 2012\Projects\Sample\Sample\Sample_wrap.obj Sample

Error Link 2001 libavformat.a(tls_schannel.o) when building any ffmpeg project in Visual Studio 2010

I have just built ffmpeg latest version 3.0 and when I am trying to build ffmpeg related project in Visual Studio 2010, it gives this error:
libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _FreeContextBuffer#4
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _InitializeSecurityContextA#48
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol __imp__ApplyControlToken#8
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol __imp__FreeCredentialsHandle#4
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol __imp__DeleteSecurityContext#4
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _AcquireCredentialsHandleA#36
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _DecryptMessage#16
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _EncryptMessage#16
1>libavformat.a(tls_schannel.o) : error LNK2001: unresolved external symbol _QueryContextAttributesA#12
My project is able to build an older version from 2014. When I search in 2014 ffmpeg there is no tls_schannel.c present.
But I have to make project now with latest ffmpeg3.0.
So please tell me how to make it work.
Above problem is solved by doing following steps:
i have run command line ./cibfugyre --toolchain=msvc --enable-gpl --disable-network
Then i build again with make command.
Then i included resultant library and headers and my project is running now.
The problem was i was not doing --disable-network. For that you can do google.
Thank you.

VC++ Glew external linking errors

so I have this project for my graphics class that I need to complete using C++ and OpenGL. I am using VS2013 and VC++ to complete the project. The first example we were given built successfully and ran fine. However, when we were given the code for the second project, I get a bunch of linking errors (below) where Mac and Linux computers were able to compile and run just fine. I have been through numerous blogs on and off of stack overflow, and have been unable to resolve this issue.
I've also replaced all the libraries and dlls and headers both from the pre-packaged download from the glut website, and I also compiled the source code of glut and placed the lib, dll, and header files into the correct folder and still get the same error.
The libraries here must be dynamic, they cannot be static (as per request of my professor).
The source code can be found here: https://bitbucket.org/nolanblew/cs-150-project-2/overview, and then click on "download" or you can fork it (please don't push to this repo - it will be public until this question is answered).
Here are all of the link errors I'm getting. The code compiles fine but fails on build:
Error 35 error LNK2001: unresolved external symbol ___glewVertexAttribPointer C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 34 error LNK2001: unresolved external symbol ___glewUseProgram C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 33 error LNK2001: unresolved external symbol ___glewUniformMatrix4fv C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 32 error LNK2001: unresolved external symbol ___glewUniform3f C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 31 error LNK2001: unresolved external symbol ___glewUniform1i C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 17 error LNK2001: unresolved external symbol ___glewShaderSource C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 16 error LNK2001: unresolved external symbol ___glewLinkProgram C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 30 error LNK2001: unresolved external symbol ___glewGetUniformLocation C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 15 error LNK2001: unresolved external symbol ___glewGetShaderiv C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 14 error LNK2001: unresolved external symbol ___glewGetProgramiv C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 19 error LNK2001: unresolved external symbol ___glewGetObjectParameterivARB C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 18 error LNK2001: unresolved external symbol ___glewGetInfoLogARB C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 29 error LNK2001: unresolved external symbol ___glewGetAttribLocation C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 24 error LNK2001: unresolved external symbol ___glewGenBuffers C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 28 error LNK2001: unresolved external symbol ___glewEnableVertexAttribArray C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 27 error LNK2001: unresolved external symbol ___glewDisableVertexAttribArray C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 13 error LNK2001: unresolved external symbol ___glewDetachShader C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 12 error LNK2001: unresolved external symbol ___glewDeleteShader C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 26 error LNK2001: unresolved external symbol ___glewDeleteProgram C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 23 error LNK2001: unresolved external symbol ___glewDeleteBuffers C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 11 error LNK2001: unresolved external symbol ___glewCreateShader C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 25 error LNK2001: unresolved external symbol ___glewCreateProgram C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 10 error LNK2001: unresolved external symbol ___glewCompileShader C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 22 error LNK2001: unresolved external symbol ___glewBufferData C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 36 error LNK2001: unresolved external symbol ___glewBindFragDataLocation C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 21 error LNK2001: unresolved external symbol ___glewBindBuffer C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 9 error LNK2001: unresolved external symbol ___glewAttachShader C:\Users\Nolan\Source\Repos\cs-150-project-2\glsupport.obj Project 2
Error 20 error LNK2001: unresolved external symbol ___glewActiveTexture C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 37 error LNK2001: unresolved external symbol ___GLEW_VERSION_2_0 C:\Users\Nolan\Source\Repos\cs-150-project-2\trans.obj Project 2
Error 38 error LNK1120: 29 unresolved externals C:\Users\Nolan\Source\Repos\cs-150-project-2\Debug\Project 2.exe Project 2
Any help would be greatly appreciated. Thanks.
Ok, well after a lot of research I found out what to do on this page: http://www.gamedev.net/topic/472791-beginner-woes-linking-solved/
Basically,
In VC++, click View>Propery Pages...
Expand Configuration Properties>Linker>Input
add glew32.lib (for example) to the Additional Dependencies box

boost::asio ssl linking error

I'm using boost version 1.47, visual studio 2010, I downloaded the binaries for windows and linked to the include directory and lib directory from my project preferences. But I still can't use any ssl functionality from boost::asio.
This is the site where I downloaded the binaries: http://www.slproweb.com/products/Win32OpenSSL.html
I Downloaded: Visual C++ 2008 Redistributables and Win32 OpenSSL v1.0.1
These are the error messages I get:
Error 1 error LNK2019: unresolved external symbol _ERR_reason_error_string referenced in function "public: virtual class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __thiscall boost::asio::error::detail::ssl_category::message(int)const " (?message#ssl_category#detail#error#asio#boost##UBE?AV?$basic_string#DU?$char_traits#D#std##V?$allocator#D#2##std##H#Z) C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\main.obj OmniTcp
Error 2 error LNK2001: unresolved external symbol _ERR_reason_error_string C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\OmniTcp.obj OmniTcp
Error 3 error LNK2019: unresolved external symbol _CRYPTO_set_id_callback referenced in function "public: __thiscall boost::asio::ssl::detail::openssl_init_base::do_init::do_init(void)" (??0do_init#openssl_init_base#detail#ssl#asio#boost##QAE#XZ) C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\main.obj OmniTcp
Error 4 error LNK2001: unresolved external symbol _CRYPTO_set_id_callback C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\OmniTcp.obj OmniTcp
Error 5 error LNK2019: unresolved external symbol _CRYPTO_set_locking_callback referenced in function "public: __thiscall boost::asio::ssl::detail::openssl_init_base::do_init::do_init(void)" (??0do_init#openssl_init_base#detail#ssl#asio#boost##QAE#XZ) C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\main.obj OmniTcp
Error 6 error LNK2001: unresolved external symbol _CRYPTO_set_locking_callback C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\OmniTcp\OmniTcp.obj OmniTcp
Error 25 error LNK1120: 12 unresolved externals C:\Documents and Settings\Elias\my documents\visual studio 2010\Projects\OmniTcp\Debug\OmniTcp.exe OmniTcp
I get a few more error messages but hey are all similar to eachother.
These are the libraries I linked to with boost 1.69, visual studio 2019, and OpenSSl-Win64:
libssl.lib;libcrypto.lib
As mentioned in the comments to the question, my project linked once I added:
lib\libeay32.lib
lib\ssleay32.lib
To the Project->Configuration Properties->Linker->Input->Additional Dependencies property.
Add the SSL dependencies (lib files) manually to project-->properties-->Linker-->Input-->Additional Dependencies.