mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-06 10:43:24 -05:00
12 lines
294 B
C
12 lines
294 B
C
#ifndef NITRO_FS_COMMAND_H_
|
|
#define NITRO_FS_COMMAND_H_
|
|
|
|
#include "FS_file.h"
|
|
|
|
extern FSResult (*const fsi_default_command[])(FSFile *);
|
|
|
|
void FSi_ReleaseCommand(FSFile * file, FSResult signal);
|
|
FSResult FSi_TranslateCommand(FSFile * file, FSCommandType command);
|
|
|
|
#endif //NITRO_FS_COMMAND_H_
|