mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2026-05-06 21:38:58 -05:00
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);
|