yuzu-early/src/core/loader/elf.h

39 lines
935 B
C
Raw Normal View History

2020-12-28 16:15:37 +01:00
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string>
#include "common/common_types.h"
#include "core/loader/loader.h"
namespace Core {
class System;
}
namespace Loader {
/// Loads an ELF/AXF file
class AppLoader_ELF final : public AppLoader {
public:
explicit AppLoader_ELF(FileSys::VirtualFile file);
/**
2021-04-28 05:28:56 +02:00
* Identifies whether or not the given file is an ELF file.
*
* @param elf_file The file to identify.
*
* @return FileType::ELF, or FileType::Error if the file is not an ELF file.
2020-12-28 16:15:37 +01:00
*/
2021-04-28 05:28:56 +02:00
static FileType IdentifyType(const FileSys::VirtualFile& elf_file);
2020-12-28 16:15:37 +01:00
FileType GetFileType() const override {
return IdentifyType(file);
}
2021-05-06 04:45:54 +02:00
LoadResult Load(Kernel::KProcess& process, Core::System& system) override;
2020-12-28 16:15:37 +01:00
};
} // namespace Loader