openssh-portable/contrib/win32/win32compat/inc/dlfcn.h

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();