Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Shuffle things around. Add NIST X.509 test to build. | lloyd | 2014-01-01 | 1 | -79/+0 |
| | |||||
* | Replace 0 and NULL pointer constants with nullptr. Also fix an old | lloyd | 2012-05-18 | 1 | -2/+2 |
| | | | | style cast in secmem.h | ||||
* | Use LoadLibraryA instead of bare LoadLibrary so things work if used in | lloyd | 2011-12-13 | 1 | -1/+1 |
| | | | | an amalgamation and the app is compiled in Unicode mode. | ||||
* | GCC doesn't like casting a function pointer to void* without an | lloyd | 2011-12-02 | 1 | -1/+2 |
| | | | | explicit cast. | ||||
* | Under certain compilation modules, HMODULE isn't a void* but rather a | lloyd | 2010-09-08 | 1 | -2/+2 |
| | | | | | | pointer to a nonce struct; presumably for slightly better typechecking. In case we're compiling under such a mode, case the first argument to FreeLibrary and GetProcAddress to a HMODULE. | ||||
* | Add support for Windows-style dynamic loading with LoadLibrary. Not | lloyd | 2010-08-25 | 1 | -8/+26 |
| | | | | yet tested. | ||||
* | If dynamic loading fails, include result of dlerror() in the exception msg | lloyd | 2010-07-30 | 1 | -1/+8 |
| | |||||
* | Add a new utility class Dynamically_Loaded_Library which wraps around | lloyd | 2010-07-27 | 1 | -0/+53 |
the system dynamic linker (if any). Currently it only supports dlopen, and is only enabled on Linux. It will almost certainly work on BSDs and Solaris as well, though, and should be easy to extend to support Win32-style dynamic loading. Also add a new engine, Dynamically_Loaded_Engine, which loads up a new Engine object from a shared library/DLL. |