forked from Dniel97/segatools
11 lines
188 B
C
11 lines
188 B
C
#pragma once
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct controlbd_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT controlbd_hook_init(const struct controlbd_config *cfg); |