forked from Dniel97/segatools
board: Shift config structs around
This commit is contained in:
parent
f8289689f0
commit
f11a3cb657
@ -5,6 +5,7 @@
|
||||
#include <stddef.h>
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
void aime_config_load(struct aime_config *cfg, const wchar_t *filename)
|
||||
{
|
||||
|
@ -3,8 +3,6 @@
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
struct aime_config {
|
||||
bool enable;
|
||||
};
|
||||
#include "board/sg-reader.h"
|
||||
|
||||
void aime_config_load(struct aime_config *cfg, const wchar_t *filename);
|
||||
|
@ -6,7 +6,6 @@
|
||||
|
||||
#include "aimeio/aimeio.h"
|
||||
|
||||
#include "board/config.h"
|
||||
#include "board/sg-led.h"
|
||||
#include "board/sg-nfc.h"
|
||||
#include "board/sg-reader.h"
|
||||
|
@ -2,7 +2,11 @@
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include "board/config.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
struct aime_config {
|
||||
bool enable;
|
||||
};
|
||||
|
||||
HRESULT sg_reader_hook_init(
|
||||
const struct aime_config *cfg,
|
||||
|
Loading…
Reference in New Issue
Block a user