1
0
mirror of synced 2025-02-16 10:42:41 +01:00

11 lines
204 B
C
Raw Normal View History

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