Stratosphere: Add support for custom KIPs/INI in Fusee

This commit is contained in:
Michael Scire
2018-04-11 21:56:11 -06:00
parent e5a0cb1abe
commit 0674c4b64f
4 changed files with 127 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
#ifndef FUSEE_STRATOSPHERE_H
#define FUSEE_STRATOSPHERE_H
#include "utils.h"
#include "kip.h"
#define STRATOSPHERE_INI1_EMBEDDED 0x0
#define STRATOSPHERE_INI1_PACKAGE2 0x1
#define STRATOSPHERE_INI1_MAX 0x2
ini1_header_t *stratosphere_get_ini1(void);
void stratosphere_merge_inis(void *dst, ini1_header_t **inis, unsigned int num_inis);
#endif