11 lines
201 B
C
11 lines
201 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
|
|
struct bnusio_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT bnusio_hook_init(const struct bnusio_config *cfg);
|
|
void bnusio_insert_hooks(HMODULE target); |