mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-22 08:09:18 +01:00
40ba5db3b3
- Added XML stuff to parse the meta.xml file Notes: - To build.. this now requires the mxml lib
20 lines
363 B
C
20 lines
363 B
C
#ifndef __APPMETADATA_H__
|
|
#define __APPMETADATA_H__
|
|
|
|
#include <gctypes.h>
|
|
|
|
struct MetaData
|
|
{
|
|
char* name;
|
|
char* coder;
|
|
char* version;
|
|
char* shortDescription;
|
|
char* longDescription;
|
|
char* releaseDate;
|
|
};
|
|
|
|
struct MetaData* LoadMetaData(const char* path);
|
|
void FreeMetaData(struct MetaData* metaData);
|
|
char* LoadArguments(const char* path, u16* length);
|
|
|
|
#endif |