13 lines
317 B
C
13 lines
317 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
struct bpreader_config {
|
|
bool enable;
|
|
uint16_t port;
|
|
wchar_t access_code[21];
|
|
};
|
|
|
|
HRESULT bpreader_init(struct bpreader_config *cfg, uint16_t port);
|
|
void bpreader_congif_load(struct bpreader_config *cfg, const wchar_t *filename); |