segatools/common/platform/openssl.h
2025-10-05 11:01:13 +02:00

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);