mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
* Fix deleting file when copying to same dir and add recursive copying FIX: Deletes file when copying to same dir ADD: Recursive copying (copy files and dirs within dirs) (also undoes disabling copying folders) * Derp fix * Derp fix (with undoing disabling folder copying)
16 lines
408 B
C
16 lines
408 B
C
#include <nds.h>
|
|
|
|
#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
|