1
0
mirror of synced 2025-01-23 22:54:04 +01:00

12 lines
209 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;
unsigned int port;
2023-01-02 23:35:53 -05:00
};
HRESULT qr_hook_init(const struct qr_config *cfg, unsigned int port);