├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE.md ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── m4 ├── ax_cxx_compile_stdcxx.m4 ├── ax_cxx_compile_stdcxx_14.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 └── src ├── common ├── be_val.h ├── elf.h ├── rplwrap.h ├── type_traits.h └── utils.h ├── elf2rpl └── main.cpp ├── readrpl ├── generate_exports_def.cpp ├── generate_exports_def.h ├── main.cpp ├── print.cpp ├── print.h ├── readrpl.h ├── verify.cpp └── verify.h ├── rplexportgen └── rplexportgen.cpp ├── rplimportgen └── rplimportgen.cpp ├── udplogserver └── main.cpp └── wuhbtool ├── entities ├── BufferFileEntry.cpp ├── BufferFileEntry.h ├── DirectoryEntry.cpp ├── DirectoryEntry.h ├── FileEntry.cpp ├── FileEntry.h ├── NodeEntry.cpp ├── NodeEntry.h ├── OSFileEntry.cpp ├── OSFileEntry.h ├── RootEntry.cpp └── RootEntry.h ├── main.cpp ├── services ├── RomFSService.cpp ├── RomFSService.h ├── RomFSStructs.h ├── TgaGzService.cpp └── TgaGzService.h └── utils ├── filepath.cpp ├── filepath.h ├── types.h └── utils.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_14.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/ax_cxx_compile_stdcxx_14.m4 -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/common/be_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/common/be_val.h -------------------------------------------------------------------------------- /src/common/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/common/elf.h -------------------------------------------------------------------------------- /src/common/rplwrap.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define RPLWRAP_PREFIX "__rplwrap_" 4 | -------------------------------------------------------------------------------- /src/common/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/common/type_traits.h -------------------------------------------------------------------------------- /src/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/common/utils.h -------------------------------------------------------------------------------- /src/elf2rpl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/elf2rpl/main.cpp -------------------------------------------------------------------------------- /src/readrpl/generate_exports_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/generate_exports_def.cpp -------------------------------------------------------------------------------- /src/readrpl/generate_exports_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/generate_exports_def.h -------------------------------------------------------------------------------- /src/readrpl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/main.cpp -------------------------------------------------------------------------------- /src/readrpl/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/print.cpp -------------------------------------------------------------------------------- /src/readrpl/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/print.h -------------------------------------------------------------------------------- /src/readrpl/readrpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/readrpl.h -------------------------------------------------------------------------------- /src/readrpl/verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/verify.cpp -------------------------------------------------------------------------------- /src/readrpl/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/readrpl/verify.h -------------------------------------------------------------------------------- /src/rplexportgen/rplexportgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/rplexportgen/rplexportgen.cpp -------------------------------------------------------------------------------- /src/rplimportgen/rplimportgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/rplimportgen/rplimportgen.cpp -------------------------------------------------------------------------------- /src/udplogserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/udplogserver/main.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/BufferFileEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/BufferFileEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/BufferFileEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/BufferFileEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/entities/DirectoryEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/DirectoryEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/DirectoryEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/DirectoryEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/entities/FileEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/FileEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/FileEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/FileEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/entities/NodeEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/NodeEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/NodeEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/NodeEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/entities/OSFileEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/OSFileEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/OSFileEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/OSFileEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/entities/RootEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/RootEntry.cpp -------------------------------------------------------------------------------- /src/wuhbtool/entities/RootEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/entities/RootEntry.h -------------------------------------------------------------------------------- /src/wuhbtool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/main.cpp -------------------------------------------------------------------------------- /src/wuhbtool/services/RomFSService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/services/RomFSService.cpp -------------------------------------------------------------------------------- /src/wuhbtool/services/RomFSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/services/RomFSService.h -------------------------------------------------------------------------------- /src/wuhbtool/services/RomFSStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/services/RomFSStructs.h -------------------------------------------------------------------------------- /src/wuhbtool/services/TgaGzService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/services/TgaGzService.cpp -------------------------------------------------------------------------------- /src/wuhbtool/services/TgaGzService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/services/TgaGzService.h -------------------------------------------------------------------------------- /src/wuhbtool/utils/filepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/utils/filepath.cpp -------------------------------------------------------------------------------- /src/wuhbtool/utils/filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/utils/filepath.h -------------------------------------------------------------------------------- /src/wuhbtool/utils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/utils/types.h -------------------------------------------------------------------------------- /src/wuhbtool/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/wut-tools/HEAD/src/wuhbtool/utils/utils.h --------------------------------------------------------------------------------