mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-14 05:05:07 -05:00
15 lines
399 B
C
15 lines
399 B
C
#ifndef gcn64ctl_gui_mpkedit_h__
|
|
#define gcn64ctl_gui_mpkedit_h__
|
|
|
|
#include "mempak.h"
|
|
|
|
struct mpkedit_data;
|
|
struct application;
|
|
|
|
struct mpkedit_data *mpkedit_new(struct application *app);
|
|
void mpkedit_free(struct mpkedit_data *mpke);
|
|
void mpke_replaceMpk(struct application *app, mempak_structure_t *mpk, char *filename);
|
|
mempak_structure_t *mpke_getCurrentMempak(struct application *app);
|
|
|
|
#endif
|