segatools/common/platform/hwreset.h
2025-04-17 19:40:40 +02:00

12 lines
164 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct hwreset_config {
bool enable;
};
HRESULT hwreset_hook_init(const struct hwreset_config *cfg);