1
0
mirror of synced 2024-11-24 05:50:12 +01:00
bananatools/taikohook/qr.h

11 lines
204 B
C
Raw Normal View History

2023-01-03 05:35:53 +01: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);