summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-27 17:04:05 +0100
committerGitHub <noreply@github.com>2018-12-27 17:04:05 +0100
commitc4515d305b80556fc9b316805a50e2303304a457 (patch)
tree9ef68f80306b0bfbd17e84e70c44f3656c057fc5 /src/core/loader/loader.h
parentMerge pull request #1946 from lioncash/decl (diff)
parentam: Implement GetSaveDataSize and ExtendSaveData (diff)
downloadyuzu-c4515d305b80556fc9b316805a50e2303304a457.tar
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.gz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.bz2
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.lz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.xz
yuzu-c4515d305b80556fc9b316805a50e2303304a457.tar.zst
yuzu-c4515d305b80556fc9b316805a50e2303304a457.zip
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 0838e303b..cfd67adc0 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -15,6 +15,10 @@
#include "core/file_sys/control_metadata.h"
#include "core/file_sys/vfs.h"
+namespace FileSys {
+class NACP;
+} // namespace FileSys
+
namespace Kernel {
struct AddressMapping;
class Process;
@@ -245,11 +249,11 @@ public:
}
/**
- * Get the developer of the application
- * @param developer Reference to store the application developer into
+ * Get the control data (CNMT) of the application
+ * @param control Reference to store the application control data into
* @return ResultStatus result of function
*/
- virtual ResultStatus ReadDeveloper(std::string& developer) {
+ virtual ResultStatus ReadControlData(FileSys::NACP& control) {
return ResultStatus::ErrorNotImplemented;
}