mirror of
https://github.com/joel16/VITA-Homebrew-Sorter.git
synced 2024-11-27 05:10:43 +00:00
11 lines
217 B
C++
11 lines
217 B
C++
#ifndef _VITA_HB_SORTER_LOADOUTS_H_
|
|
#define _VITA_HB_SORTER_LOADOUTS_H_
|
|
|
|
namespace Loadouts {
|
|
int Backup(void);
|
|
int Restore(const std::string &filename);
|
|
int Delete(const std::string &filename);
|
|
}
|
|
|
|
#endif
|