summaryrefslogblamecommitdiffstats
path: root/src/core/loader/elf.h
blob: d3cbf414d4cdeb7f1654afa573b9b211a44f6105 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                   




                                          
                                
                               
 

                                                                                                    
 
                  
 

                                        
       
                                               
                     
 



                                              
                        
 


                          
  
 
                     
// Copyright 2013 Dolphin Emulator Project / Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"
#include "core/loader/loader.h"

////////////////////////////////////////////////////////////////////////////////////////////////////
// Loader namespace

namespace Loader {

/// Loads an ELF/AXF file
class AppLoader_ELF : public AppLoader {
public:
    AppLoader_ELF(const std::string& filename);
    ~AppLoader_ELF();

    /**
     * Load the bootable file
     * @return ResultStatus result of function
     */
    ResultStatus Load();

private:
    std::string filename;
    bool        is_loaded;
};

} // namespace Loader