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

11 lines
218 B
C

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