CfgUSBLoader/plugins/mighty/source/fat_mine.h
2015-01-17 10:11:08 +00:00

16 lines
283 B
C

#ifndef _FAT_H_
#define _FAT_H_
#define SD 1
#define USB 2
/* Prototypes */
s32 Fat_Mount(int);
s32 Fat_Unmount(void);
s32 Fat_ReadFile(const char *, void **);
int Fat_MakeDir(const char *);
bool Fat_CheckFile(const char *);
s32 Fat_SaveFile(const char *, void **, u32);
#endif