11 lines
204 B
C
11 lines
204 B
C
#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); |