12 lines
209 B
C
12 lines
209 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct qr_config {
|
|
bool enable;
|
|
unsigned int port;
|
|
};
|
|
|
|
HRESULT qr_hook_init(const struct qr_config *cfg, unsigned int port);
|