mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-07-05 05:04:47 +02:00
11 lines
218 B
C
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); |