|
|
@ -12,6 +12,7 @@
|
|
|
|
#include <vector>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/file_sys/control_metadata.h"
|
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
namespace Kernel {
|
|
|
@ -243,6 +244,15 @@ public:
|
|
|
|
return ResultStatus::ErrorNotImplemented;
|
|
|
|
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:
|
|
|
|
protected:
|
|
|
|
FileSys::VirtualFile file;
|
|
|
|
FileSys::VirtualFile file;
|
|
|
|
bool is_loaded = false;
|
|
|
|
bool is_loaded = false;
|
|
|
|