bpc.mitm: Make reboot type configurable

This commit is contained in:
Michael Scire 2019-02-05 01:51:05 -08:00
parent e2a7f23214
commit 67c7ef69f4
5 changed files with 42 additions and 8 deletions

View file

@ -73,6 +73,10 @@ class Utils {
static bool IsHidAvailable();
static Result GetKeysDown(u64 *keys);
static bool HasOverrideButton(u64 tid);
/* Settings! */
static Result GetSettingsItemValueSize(const char *name, const char *key, u64 *out_size);
static Result GetSettingsItemValue(const char *name, const char *key, void *out, size_t max_size, u64 *out_size);
private:
static void RefreshConfiguration();
};