blob: b5e73bcfcb0c06bf0ff15798b9b8e8c9963e4354 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | #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_
 |