mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-08-14 14:28:31 +02:00
- 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.
10 lines
201 B
C
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();
|