mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-25 01:40:11 +01:00
11 lines
171 B
C
11 lines
171 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
struct aime_config {
|
|
bool enable;
|
|
};
|
|
|
|
void aime_config_load(struct aime_config *cfg, const wchar_t *filename);
|