mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
22 lines
566 B
C
22 lines
566 B
C
#include <nds.h>
|
|
|
|
#include "file_browse.h"
|
|
|
|
#ifndef FILE_COPY
|
|
#define FILE_COPY
|
|
|
|
extern char clipboard[256];
|
|
extern char clipboardFilename[256];
|
|
extern bool clipboardFolder;
|
|
extern bool clipboardOn;
|
|
extern bool clipboardUsed;
|
|
extern int clipboardDrive; // 0 == SD card, 1 == Flashcard, 2 == RAMdrive 1, 3 == RAMdrive 2
|
|
extern bool clipboardInNitro;
|
|
|
|
extern void printBytes(int bytes);
|
|
|
|
extern off_t getFileSize(const char *fileName);
|
|
extern int fcopy(const char *sourcePath, const char *destinationPath);
|
|
void changeFileAttribs(DirEntry* entry);
|
|
|
|
#endif // FILE_COPY
|