Files
TegraExplorer/source/fs/fscopy.h
SuchMemeManySkill ab5c5e799e Add file copy/move
2020-12-26 01:05:33 +01:00

8 lines
193 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);