chuniio: Add input config

This commit is contained in:
Tau
2019-11-17 13:11:49 -05:00
parent 39abee3a75
commit beeebf3946
4 changed files with 73 additions and 15 deletions

16
chuniio/config.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include <stddef.h>
#include <stdint.h>
struct chuni_io_config {
uint8_t vk_test;
uint8_t vk_service;
uint8_t vk_coin;
uint8_t vk_ir;
uint8_t vk_cell[32];
};
void chuni_io_config_load(
struct chuni_io_config *cfg,
const wchar_t *filename);