Merge pull request #1819 from DarkLordZach/disable-addons

patch_manager: Add support for disabling patches
This commit is contained in:
bunnei 2018-12-10 21:52:19 -05:00 committed by GitHub
commit 2c45c6d234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 691 additions and 15 deletions

View file

@ -12,6 +12,7 @@
#include <vector>
#include "common/common_types.h"
#include "core/file_sys/control_metadata.h"
#include "core/file_sys/vfs.h"
namespace Kernel {
@ -243,6 +244,15 @@ public:
return ResultStatus::ErrorNotImplemented;
}
/**
* Get the developer of the application
* @param developer Reference to store the application developer into
* @return ResultStatus result of function
*/
virtual ResultStatus ReadDeveloper(std::string& developer) {
return ResultStatus::ErrorNotImplemented;
}
protected:
FileSys::VirtualFile file;
bool is_loaded = false;