gc_n64_usb-v3/tool/gcn64ctl_gui_mpkedit.h

15 lines
399 B
C
Raw Normal View History

2015-10-26 00:42:13 -04:00
#ifndef gcn64ctl_gui_mpkedit_h__
#define gcn64ctl_gui_mpkedit_h__
2015-11-02 21:53:35 -05:00
#include "mempak.h"
2015-10-26 00:42:13 -04:00
struct mpkedit_data;
struct application;
struct mpkedit_data *mpkedit_new(struct application *app);
void mpkedit_free(struct mpkedit_data *mpke);
2015-11-02 21:53:35 -05:00
void mpke_replaceMpk(struct application *app, mempak_structure_t *mpk, char *filename);
2015-11-09 21:59:52 -05:00
mempak_structure_t *mpke_getCurrentMempak(struct application *app);
2015-10-26 00:42:13 -04:00
#endif