How to check (in C/C++ code) if Openssl is installed on my computer? -


i check if have openssl installed using c/c++ code. possible? mean, there macro, or portable way of doing this? thanks

the following work on windows , linux:

#ifdef win32 libhandle = loadlibrary( libraryname ); #else libhandle = dlopen( libraryname, rtld_local | rtld_now ); #endif 

Comments

Popular posts from this blog

Line ending issue with Mercurial or Visual Studio -

tags - Jquery Mixitup plugin help prevent handlers being destroyed -

c# - Delving into the world of XML (Windows Phone) Error I dont understand (The ' ' character, hexadecimal value 0x20, cannot be included in a name.) -