2023-01-02 23:35:53 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "platform/es3sec.h"
|
|
|
|
|
|
|
|
struct amcus_config {
|
|
|
|
bool enable;
|
|
|
|
wchar_t game_id[5];
|
|
|
|
wchar_t am_game_ver[6];
|
|
|
|
wchar_t cacfg_game_ver[6];
|
|
|
|
wchar_t server_uri[257];
|
|
|
|
wchar_t server_host[257];
|
|
|
|
wchar_t am_serial[12];
|
|
|
|
struct es3sec_config dongle;
|
|
|
|
};
|
|
|
|
|
2023-02-11 01:55:56 -05:00
|
|
|
void amcus_config_load(struct amcus_config *cfg, const wchar_t *filename);
|