forked from Dniel97/segatools
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);
|