#include "winhelper.h" #include void* dlopen(const char* lib, int) { return LoadLibraryA(lib); } void* dlsym(void* handle, const char* proc) { return GetProcAddress(static_cast(handle), proc); } int dlclose(void* handle) { return FreeLibrary(static_cast(handle)); }