bananatools/taikohook/qr.h

11 lines
204 B
C
Raw Normal View History

2023-01-03 04:35:53 +00:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
struct qr_config {
bool enable;
};
HRESULT qr_hook_init(const struct qr_config *cfg);
void qr_insert_hooks(HMODULE target);