ps2sdk  1.1
A collection of Open Source libraries used for developing applications on Sony's PlayStation 2® (PS2).
elf-loader.h
Go to the documentation of this file.
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # (c) 2020 Francisco Javier Trujillo Mata <fjtrujy@gmail.com>
7 # Licenced under Academic Free License version 2.0
8 # Review ps2sdk README & LICENSE files for further details.
9 */
10 
16 #ifndef __ELFLOADER_H__
17 #define __ELFLOADER_H__
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 // Before call this method be sure that you have previously called sbv_patch_disable_prefix_check();
24 int LoadELFFromFile(const char *filename, int argc, char *argv[]);
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif /* __ELFLOADER_H__ */
int LoadELFFromFile(const char *filename, int argc, char *argv[])
Definition: elf.c:33