forked from Hay1tsme/segatools
13 lines
183 B
C
13 lines
183 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct openssl_config {
|
|
bool enable;
|
|
bool override;
|
|
};
|
|
|
|
HRESULT openssl_hook_init(const struct openssl_config *cfg);
|