mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-08 05:01:46 +00:00
5898c861ec
Also implement the current folder menu
10 lines
No EOL
296 B
C
10 lines
No EOL
296 B
C
#pragma once
|
|
#include <utils/types.h>
|
|
#include "../err.h"
|
|
|
|
#define COPY_MODE_CANCEL BIT(0)
|
|
#define COPY_MODE_PRINT BIT(1)
|
|
|
|
ErrCode_t FileCopy(const char *locin, const char *locout, u8 options);
|
|
ErrCode_t FolderDelete(const char *path);
|
|
ErrCode_t FolderCopy(const char *locin, const char *locout); |