mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
21 lines
520 B
C++
21 lines
520 B
C++
#pragma once
|
|
|
|
/*Threaded functions for copying files.
|
|
file.cpp has wrapper functions for these.
|
|
No need to call directly.*/
|
|
namespace fs
|
|
{
|
|
void _fileDrawFunc(void *a);
|
|
void createSaveData_t(void *a);
|
|
void copyFile_t(void *a);
|
|
void copyFileCommit_t(void *a);
|
|
void copyDirToDir_t(void *a);
|
|
void copyDirToDirCommit_t(void *a);
|
|
void copyDirToZip_t(void *a);
|
|
void copyZipToDir_t(void *a);
|
|
void wipesave_t(void *a);
|
|
void closeZip_t(void *a);
|
|
|
|
void backupUserSaves_t(void *a);
|
|
}
|