segatools/fgohook/deck.h
2023-11-22 21:43:42 +01: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);