mirror of
https://github.com/parasyte/alt64
synced 2024-11-02 08:15:07 -04:00
18 lines
481 B
C
18 lines
481 B
C
|
//
|
||
|
// 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;
|
||
|
|
||
|
void file_to_mpk(display_context_t disp, u8 *filename);
|
||
|
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
|