2017-10-12 17:52:10 -04:00
|
|
|
//
|
|
|
|
// Copyright (c) 2017 The Altra64 project contributors
|
|
|
|
// See LICENSE file in the project root for full license information.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _MEMORYPAK_H
|
|
|
|
#define _MEMORYPAK_H
|
|
|
|
|
|
|
|
//TODO: not sure if this is correct!!!
|
|
|
|
extern char *mempak_path;
|
|
|
|
|
2017-10-20 11:31:32 -04:00
|
|
|
int file_to_mpk(display_context_t disp, u8 *filename);
|
2017-10-12 17:52:10 -04:00
|
|
|
void mpk_to_file(display_context_t disp, char *mpk_filename, int quick);
|
|
|
|
void view_mpk_file(display_context_t disp, char *mpk_filename);
|
|
|
|
void view_mpk(display_context_t disp);
|
|
|
|
|
|
|
|
#endif
|