2022-12-11 03:01:52 +00:00
|
|
|
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct controlbd_config {
|
|
|
|
bool enable;
|
|
|
|
};
|
2023-03-30 07:55:40 +00:00
|
|
|
|
2022-12-11 03:01:52 +00:00
|
|
|
HRESULT controlbd_hook_init(const struct controlbd_config *cfg);
|