2016-12-08 22:06:47 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2017-02-28 04:10:23 +01:00
|
|
|
#define HSINJECT_MARKFILE "__gm9_hsbak.pth"
|
|
|
|
|
2016-12-08 22:06:47 +01:00
|
|
|
u32 VerifyGameFile(const char* path);
|
2016-12-13 00:20:00 +01:00
|
|
|
u32 CheckEncryptedGameFile(const char* path);
|
2017-01-31 16:16:26 +01:00
|
|
|
u32 CryptGameFile(const char* path, bool inplace, bool encrypt);
|
2016-12-15 11:46:00 +01:00
|
|
|
u32 BuildCiaFromGameFile(const char* path, bool force_legit);
|
2017-03-29 02:23:06 +02:00
|
|
|
u32 ShowGameFileTitleInfo(const char* path);
|
2017-01-25 14:46:29 +01:00
|
|
|
u32 BuildNcchInfoXorpads(const char* destdir, const char* path);
|
2017-02-28 04:10:23 +01:00
|
|
|
u32 CheckHealthAndSafetyInject(const char* hsdrv);
|
2017-01-30 01:49:01 +01:00
|
|
|
u32 InjectHealthAndSafety(const char* path, const char* destdrv);
|