summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-12-07 02:27:50 +0100
committerZach Hilman <zachhilman@gmail.com>2018-12-27 06:16:55 +0100
commit0756f29a2c99070a6c676b39d797015d140ad7ac (patch)
treef7dc8a039fac35fe595ad410ed8ecfec83ed0b97 /src/core/loader/loader.h
parentcontrol_metadata: Update NACP fields with latest Switchbrew data (diff)
downloadyuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar.gz
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar.bz2
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar.lz
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar.xz
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.tar.zst
yuzu-0756f29a2c99070a6c676b39d797015d140ad7ac.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;
}