mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Include clearing
This commit is contained in:
parent
b005ee3cda
commit
4ffd03fe3e
80 changed files with 1785 additions and 1745 deletions
|
|
@ -1,7 +1,16 @@
|
|||
#include "stdafx.h"
|
||||
#include "Loader.h"
|
||||
#include "ELF.h"
|
||||
|
||||
void Elf_Ehdr::Show()
|
||||
{
|
||||
}
|
||||
|
||||
void Elf_Ehdr::Load(vfsStream& f)
|
||||
{
|
||||
e_magic = Read32(f);
|
||||
e_class = Read8(f);
|
||||
}
|
||||
|
||||
ELFLoader::ELFLoader(vfsStream& f)
|
||||
: elf_f(f)
|
||||
, LoaderBase()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue