mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
14 lines
390 B
C
14 lines
390 B
C
#ifndef FILE_COPY
|
|
#define FILE_COPY
|
|
|
|
extern char clipboard[256];
|
|
extern char clipboardFilename[256];
|
|
extern bool clipboardOn;
|
|
extern bool clipboardUsed;
|
|
extern bool clipboardDrive; // false == SD card, true == Flashcard
|
|
extern bool clipboardInNitro;
|
|
|
|
extern off_t getFileSize(const char *fileName);
|
|
extern int fcopy(const char *sourcePath, const char *destinationPath);
|
|
|
|
#endif // FILE_COPY
|