12 lines
241 B
C
12 lines
241 B
C
|
#pragma once
|
||
|
#include <windows.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
struct bpreader_config {
|
||
|
bool enable;
|
||
|
char access_code[21];
|
||
|
};
|
||
|
|
||
|
HRESULT bpreader_init(uint16_t port);
|
||
|
void bpreader_congif_init(struct bpreader_config *cfg);
|