1
0
mirror of synced 2025-02-09 07:39:34 +01:00
bananatools/amcus/config.h

22 lines
491 B
C
Raw Normal View History

2023-01-02 23:35:53 -05:00
#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "platform/es3sec.h"
2023-02-12 14:45:41 -05:00
#include "platform/netenv.h"
2023-01-02 23:35:53 -05:00
struct amcus_config {
bool enable;
wchar_t game_id[5];
2023-03-10 02:53:00 -05:00
wchar_t game_cd[5];
2023-01-02 23:35:53 -05:00
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-12 14:45:41 -05:00
struct netenv_config netenv;
2023-01-02 23:35:53 -05:00
};
2023-02-11 01:55:56 -05:00
void amcus_config_load(struct amcus_config *cfg, const wchar_t *filename);