segatools/games/fgohook/deck.h
2025-04-17 19:40:40 +02:00

12 lines
177 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
struct deck_config {
bool enable;
};
HRESULT deck_hook_init(const struct deck_config *cfg, unsigned int port_no);