├── .gitignore ├── 3gx.ld ├── Archive vtable.txt ├── Includes ├── Helpers.hpp ├── Helpers │ ├── AutoRegion.hpp │ ├── HoldKey.hpp │ ├── KeySequence.hpp │ ├── MenuEntryHelpers.hpp │ ├── OSDManager.hpp │ ├── QuickMenu.hpp │ ├── Strings.hpp │ └── Wrappers.hpp ├── Unicode.h ├── char16.h ├── csvc.h ├── main.hpp ├── patches.hpp ├── rt.h ├── save.hpp └── types.h ├── Makefile ├── OnionFS.plgInfo ├── README.md ├── Sources ├── Helpers │ └── KeySequence.cpp ├── asm.s ├── hooked_func.cpp ├── main.cpp ├── patches.cpp ├── rt.c └── save.cpp └── sendfile.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/.gitignore -------------------------------------------------------------------------------- /3gx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/3gx.ld -------------------------------------------------------------------------------- /Archive vtable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Archive vtable.txt -------------------------------------------------------------------------------- /Includes/Helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers.hpp -------------------------------------------------------------------------------- /Includes/Helpers/AutoRegion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/AutoRegion.hpp -------------------------------------------------------------------------------- /Includes/Helpers/HoldKey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/HoldKey.hpp -------------------------------------------------------------------------------- /Includes/Helpers/KeySequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/KeySequence.hpp -------------------------------------------------------------------------------- /Includes/Helpers/MenuEntryHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/MenuEntryHelpers.hpp -------------------------------------------------------------------------------- /Includes/Helpers/OSDManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/OSDManager.hpp -------------------------------------------------------------------------------- /Includes/Helpers/QuickMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/QuickMenu.hpp -------------------------------------------------------------------------------- /Includes/Helpers/Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/Strings.hpp -------------------------------------------------------------------------------- /Includes/Helpers/Wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Helpers/Wrappers.hpp -------------------------------------------------------------------------------- /Includes/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/Unicode.h -------------------------------------------------------------------------------- /Includes/char16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/char16.h -------------------------------------------------------------------------------- /Includes/csvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/csvc.h -------------------------------------------------------------------------------- /Includes/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/main.hpp -------------------------------------------------------------------------------- /Includes/patches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/patches.hpp -------------------------------------------------------------------------------- /Includes/rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/rt.h -------------------------------------------------------------------------------- /Includes/save.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/save.hpp -------------------------------------------------------------------------------- /Includes/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Includes/types.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Makefile -------------------------------------------------------------------------------- /OnionFS.plgInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/OnionFS.plgInfo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Helpers/KeySequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/Helpers/KeySequence.cpp -------------------------------------------------------------------------------- /Sources/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/asm.s -------------------------------------------------------------------------------- /Sources/hooked_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/hooked_func.cpp -------------------------------------------------------------------------------- /Sources/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/main.cpp -------------------------------------------------------------------------------- /Sources/patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/patches.cpp -------------------------------------------------------------------------------- /Sources/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/rt.c -------------------------------------------------------------------------------- /Sources/save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/Sources/save.cpp -------------------------------------------------------------------------------- /sendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PabloMK7/OnionFS/HEAD/sendfile.py --------------------------------------------------------------------------------