mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 23:27:58 -05:00
Loader: Cleaned up and removed unused code, refactored ELF namespace.
This commit is contained in:
@ -329,3 +329,18 @@ public:
|
||||
return bRelocate;
|
||||
}
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Loader namespace
|
||||
|
||||
namespace Loader {
|
||||
|
||||
/**
|
||||
* Loads an ELF file
|
||||
* @param filename String filename of ELF file
|
||||
* @param error_string Pointer to string to put error message if an error has occurred
|
||||
* @return True on success, otherwise false
|
||||
*/
|
||||
bool Load_ELF(std::string& filename, std::string* error_string);
|
||||
|
||||
} // namespace Loader
|
||||
|
Reference in New Issue
Block a user