Bryan Berns 44ba5483cd Enable PKCS11 Support (#331)
- Enable use of PKCS11 library files by adjusting central configuration file.
- Modified dlsym() to return a void pointer instead of an int which is consistent with POSIX. The previous return type caused an issue with 32-bit builds with PKCS11 enabled.
2019-05-21 13:36:24 -07:00

10 lines
201 B
C

#pragma once
#include <Windows.h>
#define RTLD_NOW 0
HMODULE dlopen(const char *filename, int flags);
int dlclose(HMODULE handle);
void * dlsym(HMODULE handle, const char *symbol);
char * dlerror();