├── .github ├── FUNDING.yml └── workflows │ └── overlay.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── libs └── atmos │ ├── ams_bpc.c │ ├── ams_bpc.h │ └── service_guard.h ├── media └── exampleMenu.jpg ├── out └── config │ └── fastCFWSwitch │ └── config.ini └── source ├── configParser.cpp ├── configParser.h ├── element.h ├── main.cpp ├── payload.cpp ├── payload.h ├── payloadHandler.cpp ├── payloadHandler.h ├── section.cpp └── section.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/overlay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.github/workflows/overlay.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/README.md -------------------------------------------------------------------------------- /libs/atmos/ams_bpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/libs/atmos/ams_bpc.c -------------------------------------------------------------------------------- /libs/atmos/ams_bpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/libs/atmos/ams_bpc.h -------------------------------------------------------------------------------- /libs/atmos/service_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/libs/atmos/service_guard.h -------------------------------------------------------------------------------- /media/exampleMenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/media/exampleMenu.jpg -------------------------------------------------------------------------------- /out/config/fastCFWSwitch/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/out/config/fastCFWSwitch/config.ini -------------------------------------------------------------------------------- /source/configParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/configParser.cpp -------------------------------------------------------------------------------- /source/configParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/configParser.h -------------------------------------------------------------------------------- /source/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/element.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/payload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/payload.cpp -------------------------------------------------------------------------------- /source/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/payload.h -------------------------------------------------------------------------------- /source/payloadHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/payloadHandler.cpp -------------------------------------------------------------------------------- /source/payloadHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/payloadHandler.h -------------------------------------------------------------------------------- /source/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/section.cpp -------------------------------------------------------------------------------- /source/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hartie95/fastCFWswitch/HEAD/source/section.h --------------------------------------------------------------------------------