2023-01-03 05:35:53 +01:00
|
|
|
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct qr_config {
|
|
|
|
bool enable;
|
2023-07-11 05:21:36 +02:00
|
|
|
unsigned int port;
|
2023-01-03 05:35:53 +01:00
|
|
|
};
|
|
|
|
|
2023-07-11 05:21:36 +02:00
|
|
|
HRESULT qr_hook_init(const struct qr_config *cfg, unsigned int port);
|