├── .gitignore ├── LICENSE ├── README.md ├── belf.sln └── belf ├── belf.vcxproj ├── belf.vcxproj.filters ├── belf_loader.cpp ├── dllmain.cpp ├── dynlib.cpp ├── dynlib.h ├── elfr_sce.h ├── reader.cpp ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/README.md -------------------------------------------------------------------------------- /belf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf.sln -------------------------------------------------------------------------------- /belf/belf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/belf.vcxproj -------------------------------------------------------------------------------- /belf/belf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/belf.vcxproj.filters -------------------------------------------------------------------------------- /belf/belf_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/belf_loader.cpp -------------------------------------------------------------------------------- /belf/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/dllmain.cpp -------------------------------------------------------------------------------- /belf/dynlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/dynlib.cpp -------------------------------------------------------------------------------- /belf/dynlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/dynlib.h -------------------------------------------------------------------------------- /belf/elfr_sce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/elfr_sce.h -------------------------------------------------------------------------------- /belf/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/reader.cpp -------------------------------------------------------------------------------- /belf/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/utils.cpp -------------------------------------------------------------------------------- /belf/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balika011/belf/HEAD/belf/utils.h --------------------------------------------------------------------------------