1
0
mirror of synced 2025-02-17 19:09:22 +01:00
bananatools/board/bpreader.h

12 lines
241 B
C
Raw Normal View History

2023-01-02 23:35:53 -05:00
#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);