mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-24 05:20:10 +01:00
d86baab852
from: 88a0026f0b
12 lines
177 B
C
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);
|