├── .gitignore ├── .travis.yml ├── BUGS ├── COPYING ├── Makefile.am ├── README.md ├── appveyor.yml ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am ├── camoto.xsl ├── gamearch.xml ├── gamecomp.xml └── libgamearchive.doxygen ├── examples ├── Makefile.am ├── common-attributes.hpp ├── gamearch.cpp ├── gamecomp.cpp └── hello.cpp ├── include ├── Makefile.am └── camoto │ ├── Makefile.am │ ├── gamearchive.hpp │ └── gamearchive │ ├── archive-fat.hpp │ ├── archive.hpp │ ├── archivetype.hpp │ ├── filtertype.hpp │ ├── fixedarchive.hpp │ ├── manager.hpp │ ├── stream_archfile.hpp │ └── util.hpp ├── libgamearchive.pc.in ├── m4 ├── ax_boost_base.m4 ├── ax_boost_program_options.m4 ├── ax_boost_system.m4 ├── ax_boost_unit_test_framework.m4 ├── ax_cxx_compile_stdcxx.m4 └── ax_cxx_compile_stdcxx_11.m4 ├── src ├── Makefile.am ├── archive-fat.cpp ├── archive.cpp ├── archivetype.cpp ├── filter-bash-rle.cpp ├── filter-bash-rle.hpp ├── filter-bash.cpp ├── filter-bash.hpp ├── filter-bitswap.cpp ├── filter-bitswap.hpp ├── filter-ddave-rle.cpp ├── filter-ddave-rle.hpp ├── filter-decomp-size.cpp ├── filter-decomp-size.hpp ├── filter-epfs.cpp ├── filter-epfs.hpp ├── filter-glb-raptor.cpp ├── filter-glb-raptor.hpp ├── filter-got-lzss.cpp ├── filter-got-lzss.hpp ├── filter-prehistorik.cpp ├── filter-prehistorik.hpp ├── filter-skyroads.cpp ├── filter-skyroads.hpp ├── filter-stargunner.cpp ├── filter-stargunner.hpp ├── filter-stellar7.cpp ├── filter-stellar7.hpp ├── filter-xor-blood.cpp ├── filter-xor-blood.hpp ├── filter-xor-sagent.cpp ├── filter-xor-sagent.hpp ├── filter-xor.cpp ├── filter-xor.hpp ├── filter-zone66.cpp ├── filter-zone66.hpp ├── fixedarchive.cpp ├── fmt-bnk-harry.cpp ├── fmt-bnk-harry.hpp ├── fmt-bpa-drally.cpp ├── fmt-bpa-drally.hpp ├── fmt-cur-prehistorik.cpp ├── fmt-cur-prehistorik.hpp ├── fmt-da-levels.cpp ├── fmt-da-levels.hpp ├── fmt-dat-bash.cpp ├── fmt-dat-bash.hpp ├── fmt-dat-got.cpp ├── fmt-dat-got.hpp ├── fmt-dat-highway.cpp ├── fmt-dat-highway.hpp ├── fmt-dat-hocus.cpp ├── fmt-dat-hocus.hpp ├── fmt-dat-hugo.cpp ├── fmt-dat-hugo.hpp ├── fmt-dat-lostvikings.cpp ├── fmt-dat-lostvikings.hpp ├── fmt-dat-mystic.cpp ├── fmt-dat-mystic.hpp ├── fmt-dat-riptide.cpp ├── fmt-dat-riptide.hpp ├── fmt-dat-sango.cpp ├── fmt-dat-sango.hpp ├── fmt-dat-wacky.cpp ├── fmt-dat-wacky.hpp ├── fmt-dat-zool.cpp ├── fmt-dat-zool.hpp ├── fmt-dlt-stargunner.cpp ├── fmt-dlt-stargunner.hpp ├── fmt-epf-lionking.cpp ├── fmt-epf-lionking.hpp ├── fmt-exe-ccaves.cpp ├── fmt-exe-ccaves.hpp ├── fmt-exe-ddave.cpp ├── fmt-exe-ddave.hpp ├── fmt-gd-doofus.cpp ├── fmt-gd-doofus.hpp ├── fmt-glb-galactix.cpp ├── fmt-glb-galactix.hpp ├── fmt-glb-raptor.cpp ├── fmt-glb-raptor.hpp ├── fmt-grp-duke3d.cpp ├── fmt-grp-duke3d.hpp ├── fmt-gwx-homebrew.cpp ├── fmt-gwx-homebrew.hpp ├── fmt-hog-descent.cpp ├── fmt-hog-descent.hpp ├── fmt-lbr-vinyl.cpp ├── fmt-lbr-vinyl.hpp ├── fmt-lib-mythos.cpp ├── fmt-lib-mythos.hpp ├── fmt-pcxlib.cpp ├── fmt-pcxlib.hpp ├── fmt-pod-tv.cpp ├── fmt-pod-tv.hpp ├── fmt-res-stellar7.cpp ├── fmt-res-stellar7.hpp ├── fmt-resource-tim-fat.cpp ├── fmt-resource-tim-fat.hpp ├── fmt-resource-tim.cpp ├── fmt-resource-tim.hpp ├── fmt-rff-blood.cpp ├── fmt-rff-blood.hpp ├── fmt-roads-skyroads.cpp ├── fmt-roads-skyroads.hpp ├── fmt-vol-cosmo.cpp ├── fmt-vol-cosmo.hpp ├── fmt-wad-doom.cpp ├── fmt-wad-doom.hpp ├── main.cpp ├── stream_archfile.cpp └── util.cpp ├── tests ├── Makefile.am ├── test-archive.cpp ├── test-archive.hpp ├── test-filter-bash-rle.cpp ├── test-filter-bitswap.cpp ├── test-filter-ddave-rle.cpp ├── test-filter-decomp-size.cpp ├── test-filter-glb-raptor.cpp ├── test-filter-got-lzss.cpp ├── test-filter-prehistorik.cpp ├── test-filter-sam.cpp ├── test-filter-xor-blood.cpp ├── test-filter-xor.cpp ├── test-filter-zone66.cpp ├── test-filter.cpp ├── test-filter.hpp ├── test-fmt-bnk-harry.cpp ├── test-fmt-bpa-drally.cpp ├── test-fmt-cur-prehistorik.cpp ├── test-fmt-dat-bash-compressed.cpp ├── test-fmt-dat-bash.cpp ├── test-fmt-dat-got.cpp ├── test-fmt-dat-highway.cpp ├── test-fmt-dat-hocus.cpp ├── test-fmt-dat-hugo.cpp ├── test-fmt-dat-lostvikings.cpp ├── test-fmt-dat-mystic.cpp ├── test-fmt-dat-riptide.cpp ├── test-fmt-dat-sango.cpp ├── test-fmt-dat-wacky.cpp ├── test-fmt-dat-zool.cpp ├── test-fmt-dlt-stargunner.cpp ├── test-fmt-epf-lionking.cpp ├── test-fmt-gd-doofus.cpp ├── test-fmt-glb-galactix.cpp ├── test-fmt-glb-raptor.cpp ├── test-fmt-grp-duke3d.cpp ├── test-fmt-gwx-homebrew.cpp ├── test-fmt-hog-descent.cpp ├── test-fmt-lbr-vinyl.cpp ├── test-fmt-lib-mythos.cpp ├── test-fmt-pcxlib.cpp ├── test-fmt-pod-tv.cpp ├── test-fmt-res-stellar7.cpp ├── test-fmt-resource-tim-fat.cpp ├── test-fmt-resource-tim.cpp ├── test-fmt-rff-blood.cpp ├── test-fmt-rff-blood_encrypted.cpp ├── test-fmt-roads-skyroads.cpp ├── test-fmt-vol-cosmo.cpp ├── test-fmt-wad-doom.cpp ├── tests.cpp └── tests.hpp └── win32 ├── gamearch ├── gamearch.vcxproj └── packages.config ├── gamecomp ├── gamecomp.vcxproj └── packages.config ├── libgamearchive-tests ├── libgamearchive-tests.vcxproj └── packages.config ├── libgamearchive.autopkg.template ├── libgamearchive.sln └── libgamearchive ├── libgamearchive.vcxproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/camoto.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/doc/camoto.xsl -------------------------------------------------------------------------------- /doc/gamearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/doc/gamearch.xml -------------------------------------------------------------------------------- /doc/gamecomp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/doc/gamecomp.xml -------------------------------------------------------------------------------- /doc/libgamearchive.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/doc/libgamearchive.doxygen -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/common-attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/examples/common-attributes.hpp -------------------------------------------------------------------------------- /examples/gamearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/examples/gamearch.cpp -------------------------------------------------------------------------------- /examples/gamecomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/examples/gamecomp.cpp -------------------------------------------------------------------------------- /examples/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/examples/hello.cpp -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = camoto 2 | -------------------------------------------------------------------------------- /include/camoto/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/Makefile.am -------------------------------------------------------------------------------- /include/camoto/gamearchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/archive-fat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/archive-fat.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/archive.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/archivetype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/archivetype.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/filtertype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/filtertype.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/fixedarchive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/fixedarchive.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/manager.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/stream_archfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/stream_archfile.hpp -------------------------------------------------------------------------------- /include/camoto/gamearchive/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/include/camoto/gamearchive/util.hpp -------------------------------------------------------------------------------- /libgamearchive.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/libgamearchive.pc.in -------------------------------------------------------------------------------- /m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/ax_boost_program_options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_boost_program_options.m4 -------------------------------------------------------------------------------- /m4/ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_boost_system.m4 -------------------------------------------------------------------------------- /m4/ax_boost_unit_test_framework.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_boost_unit_test_framework.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/archive-fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/archive-fat.cpp -------------------------------------------------------------------------------- /src/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/archive.cpp -------------------------------------------------------------------------------- /src/archivetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/archivetype.cpp -------------------------------------------------------------------------------- /src/filter-bash-rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bash-rle.cpp -------------------------------------------------------------------------------- /src/filter-bash-rle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bash-rle.hpp -------------------------------------------------------------------------------- /src/filter-bash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bash.cpp -------------------------------------------------------------------------------- /src/filter-bash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bash.hpp -------------------------------------------------------------------------------- /src/filter-bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bitswap.cpp -------------------------------------------------------------------------------- /src/filter-bitswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-bitswap.hpp -------------------------------------------------------------------------------- /src/filter-ddave-rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-ddave-rle.cpp -------------------------------------------------------------------------------- /src/filter-ddave-rle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-ddave-rle.hpp -------------------------------------------------------------------------------- /src/filter-decomp-size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-decomp-size.cpp -------------------------------------------------------------------------------- /src/filter-decomp-size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-decomp-size.hpp -------------------------------------------------------------------------------- /src/filter-epfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-epfs.cpp -------------------------------------------------------------------------------- /src/filter-epfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-epfs.hpp -------------------------------------------------------------------------------- /src/filter-glb-raptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-glb-raptor.cpp -------------------------------------------------------------------------------- /src/filter-glb-raptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-glb-raptor.hpp -------------------------------------------------------------------------------- /src/filter-got-lzss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-got-lzss.cpp -------------------------------------------------------------------------------- /src/filter-got-lzss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-got-lzss.hpp -------------------------------------------------------------------------------- /src/filter-prehistorik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-prehistorik.cpp -------------------------------------------------------------------------------- /src/filter-prehistorik.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-prehistorik.hpp -------------------------------------------------------------------------------- /src/filter-skyroads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-skyroads.cpp -------------------------------------------------------------------------------- /src/filter-skyroads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-skyroads.hpp -------------------------------------------------------------------------------- /src/filter-stargunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-stargunner.cpp -------------------------------------------------------------------------------- /src/filter-stargunner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-stargunner.hpp -------------------------------------------------------------------------------- /src/filter-stellar7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-stellar7.cpp -------------------------------------------------------------------------------- /src/filter-stellar7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-stellar7.hpp -------------------------------------------------------------------------------- /src/filter-xor-blood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor-blood.cpp -------------------------------------------------------------------------------- /src/filter-xor-blood.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor-blood.hpp -------------------------------------------------------------------------------- /src/filter-xor-sagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor-sagent.cpp -------------------------------------------------------------------------------- /src/filter-xor-sagent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor-sagent.hpp -------------------------------------------------------------------------------- /src/filter-xor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor.cpp -------------------------------------------------------------------------------- /src/filter-xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-xor.hpp -------------------------------------------------------------------------------- /src/filter-zone66.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-zone66.cpp -------------------------------------------------------------------------------- /src/filter-zone66.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/filter-zone66.hpp -------------------------------------------------------------------------------- /src/fixedarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fixedarchive.cpp -------------------------------------------------------------------------------- /src/fmt-bnk-harry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-bnk-harry.cpp -------------------------------------------------------------------------------- /src/fmt-bnk-harry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-bnk-harry.hpp -------------------------------------------------------------------------------- /src/fmt-bpa-drally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-bpa-drally.cpp -------------------------------------------------------------------------------- /src/fmt-bpa-drally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-bpa-drally.hpp -------------------------------------------------------------------------------- /src/fmt-cur-prehistorik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-cur-prehistorik.cpp -------------------------------------------------------------------------------- /src/fmt-cur-prehistorik.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-cur-prehistorik.hpp -------------------------------------------------------------------------------- /src/fmt-da-levels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-da-levels.cpp -------------------------------------------------------------------------------- /src/fmt-da-levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-da-levels.hpp -------------------------------------------------------------------------------- /src/fmt-dat-bash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-bash.cpp -------------------------------------------------------------------------------- /src/fmt-dat-bash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-bash.hpp -------------------------------------------------------------------------------- /src/fmt-dat-got.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-got.cpp -------------------------------------------------------------------------------- /src/fmt-dat-got.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-got.hpp -------------------------------------------------------------------------------- /src/fmt-dat-highway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-highway.cpp -------------------------------------------------------------------------------- /src/fmt-dat-highway.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-highway.hpp -------------------------------------------------------------------------------- /src/fmt-dat-hocus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-hocus.cpp -------------------------------------------------------------------------------- /src/fmt-dat-hocus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-hocus.hpp -------------------------------------------------------------------------------- /src/fmt-dat-hugo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-hugo.cpp -------------------------------------------------------------------------------- /src/fmt-dat-hugo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-hugo.hpp -------------------------------------------------------------------------------- /src/fmt-dat-lostvikings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-lostvikings.cpp -------------------------------------------------------------------------------- /src/fmt-dat-lostvikings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-lostvikings.hpp -------------------------------------------------------------------------------- /src/fmt-dat-mystic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-mystic.cpp -------------------------------------------------------------------------------- /src/fmt-dat-mystic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-mystic.hpp -------------------------------------------------------------------------------- /src/fmt-dat-riptide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-riptide.cpp -------------------------------------------------------------------------------- /src/fmt-dat-riptide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-riptide.hpp -------------------------------------------------------------------------------- /src/fmt-dat-sango.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-sango.cpp -------------------------------------------------------------------------------- /src/fmt-dat-sango.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-sango.hpp -------------------------------------------------------------------------------- /src/fmt-dat-wacky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-wacky.cpp -------------------------------------------------------------------------------- /src/fmt-dat-wacky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-wacky.hpp -------------------------------------------------------------------------------- /src/fmt-dat-zool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-zool.cpp -------------------------------------------------------------------------------- /src/fmt-dat-zool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dat-zool.hpp -------------------------------------------------------------------------------- /src/fmt-dlt-stargunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dlt-stargunner.cpp -------------------------------------------------------------------------------- /src/fmt-dlt-stargunner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-dlt-stargunner.hpp -------------------------------------------------------------------------------- /src/fmt-epf-lionking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-epf-lionking.cpp -------------------------------------------------------------------------------- /src/fmt-epf-lionking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-epf-lionking.hpp -------------------------------------------------------------------------------- /src/fmt-exe-ccaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-exe-ccaves.cpp -------------------------------------------------------------------------------- /src/fmt-exe-ccaves.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-exe-ccaves.hpp -------------------------------------------------------------------------------- /src/fmt-exe-ddave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-exe-ddave.cpp -------------------------------------------------------------------------------- /src/fmt-exe-ddave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-exe-ddave.hpp -------------------------------------------------------------------------------- /src/fmt-gd-doofus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-gd-doofus.cpp -------------------------------------------------------------------------------- /src/fmt-gd-doofus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-gd-doofus.hpp -------------------------------------------------------------------------------- /src/fmt-glb-galactix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-glb-galactix.cpp -------------------------------------------------------------------------------- /src/fmt-glb-galactix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-glb-galactix.hpp -------------------------------------------------------------------------------- /src/fmt-glb-raptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-glb-raptor.cpp -------------------------------------------------------------------------------- /src/fmt-glb-raptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-glb-raptor.hpp -------------------------------------------------------------------------------- /src/fmt-grp-duke3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-grp-duke3d.cpp -------------------------------------------------------------------------------- /src/fmt-grp-duke3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-grp-duke3d.hpp -------------------------------------------------------------------------------- /src/fmt-gwx-homebrew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-gwx-homebrew.cpp -------------------------------------------------------------------------------- /src/fmt-gwx-homebrew.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-gwx-homebrew.hpp -------------------------------------------------------------------------------- /src/fmt-hog-descent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-hog-descent.cpp -------------------------------------------------------------------------------- /src/fmt-hog-descent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-hog-descent.hpp -------------------------------------------------------------------------------- /src/fmt-lbr-vinyl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-lbr-vinyl.cpp -------------------------------------------------------------------------------- /src/fmt-lbr-vinyl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-lbr-vinyl.hpp -------------------------------------------------------------------------------- /src/fmt-lib-mythos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-lib-mythos.cpp -------------------------------------------------------------------------------- /src/fmt-lib-mythos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-lib-mythos.hpp -------------------------------------------------------------------------------- /src/fmt-pcxlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-pcxlib.cpp -------------------------------------------------------------------------------- /src/fmt-pcxlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-pcxlib.hpp -------------------------------------------------------------------------------- /src/fmt-pod-tv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-pod-tv.cpp -------------------------------------------------------------------------------- /src/fmt-pod-tv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-pod-tv.hpp -------------------------------------------------------------------------------- /src/fmt-res-stellar7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-res-stellar7.cpp -------------------------------------------------------------------------------- /src/fmt-res-stellar7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-res-stellar7.hpp -------------------------------------------------------------------------------- /src/fmt-resource-tim-fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-resource-tim-fat.cpp -------------------------------------------------------------------------------- /src/fmt-resource-tim-fat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-resource-tim-fat.hpp -------------------------------------------------------------------------------- /src/fmt-resource-tim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-resource-tim.cpp -------------------------------------------------------------------------------- /src/fmt-resource-tim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-resource-tim.hpp -------------------------------------------------------------------------------- /src/fmt-rff-blood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-rff-blood.cpp -------------------------------------------------------------------------------- /src/fmt-rff-blood.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-rff-blood.hpp -------------------------------------------------------------------------------- /src/fmt-roads-skyroads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-roads-skyroads.cpp -------------------------------------------------------------------------------- /src/fmt-roads-skyroads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-roads-skyroads.hpp -------------------------------------------------------------------------------- /src/fmt-vol-cosmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-vol-cosmo.cpp -------------------------------------------------------------------------------- /src/fmt-vol-cosmo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-vol-cosmo.hpp -------------------------------------------------------------------------------- /src/fmt-wad-doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-wad-doom.cpp -------------------------------------------------------------------------------- /src/fmt-wad-doom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/fmt-wad-doom.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/stream_archfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/stream_archfile.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/src/util.cpp -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/test-archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-archive.cpp -------------------------------------------------------------------------------- /tests/test-archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-archive.hpp -------------------------------------------------------------------------------- /tests/test-filter-bash-rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-bash-rle.cpp -------------------------------------------------------------------------------- /tests/test-filter-bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-bitswap.cpp -------------------------------------------------------------------------------- /tests/test-filter-ddave-rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-ddave-rle.cpp -------------------------------------------------------------------------------- /tests/test-filter-decomp-size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-decomp-size.cpp -------------------------------------------------------------------------------- /tests/test-filter-glb-raptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-glb-raptor.cpp -------------------------------------------------------------------------------- /tests/test-filter-got-lzss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-got-lzss.cpp -------------------------------------------------------------------------------- /tests/test-filter-prehistorik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-prehistorik.cpp -------------------------------------------------------------------------------- /tests/test-filter-sam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-sam.cpp -------------------------------------------------------------------------------- /tests/test-filter-xor-blood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-xor-blood.cpp -------------------------------------------------------------------------------- /tests/test-filter-xor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-xor.cpp -------------------------------------------------------------------------------- /tests/test-filter-zone66.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter-zone66.cpp -------------------------------------------------------------------------------- /tests/test-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter.cpp -------------------------------------------------------------------------------- /tests/test-filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-filter.hpp -------------------------------------------------------------------------------- /tests/test-fmt-bnk-harry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-bnk-harry.cpp -------------------------------------------------------------------------------- /tests/test-fmt-bpa-drally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-bpa-drally.cpp -------------------------------------------------------------------------------- /tests/test-fmt-cur-prehistorik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-cur-prehistorik.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-bash-compressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-bash-compressed.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-bash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-bash.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-got.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-got.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-highway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-highway.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-hocus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-hocus.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-hugo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-hugo.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-lostvikings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-lostvikings.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-mystic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-mystic.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-riptide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-riptide.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-sango.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-sango.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-wacky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-wacky.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dat-zool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dat-zool.cpp -------------------------------------------------------------------------------- /tests/test-fmt-dlt-stargunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-dlt-stargunner.cpp -------------------------------------------------------------------------------- /tests/test-fmt-epf-lionking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-epf-lionking.cpp -------------------------------------------------------------------------------- /tests/test-fmt-gd-doofus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-gd-doofus.cpp -------------------------------------------------------------------------------- /tests/test-fmt-glb-galactix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-glb-galactix.cpp -------------------------------------------------------------------------------- /tests/test-fmt-glb-raptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-glb-raptor.cpp -------------------------------------------------------------------------------- /tests/test-fmt-grp-duke3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-grp-duke3d.cpp -------------------------------------------------------------------------------- /tests/test-fmt-gwx-homebrew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-gwx-homebrew.cpp -------------------------------------------------------------------------------- /tests/test-fmt-hog-descent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-hog-descent.cpp -------------------------------------------------------------------------------- /tests/test-fmt-lbr-vinyl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-lbr-vinyl.cpp -------------------------------------------------------------------------------- /tests/test-fmt-lib-mythos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-lib-mythos.cpp -------------------------------------------------------------------------------- /tests/test-fmt-pcxlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-pcxlib.cpp -------------------------------------------------------------------------------- /tests/test-fmt-pod-tv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-pod-tv.cpp -------------------------------------------------------------------------------- /tests/test-fmt-res-stellar7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-res-stellar7.cpp -------------------------------------------------------------------------------- /tests/test-fmt-resource-tim-fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-resource-tim-fat.cpp -------------------------------------------------------------------------------- /tests/test-fmt-resource-tim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-resource-tim.cpp -------------------------------------------------------------------------------- /tests/test-fmt-rff-blood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-rff-blood.cpp -------------------------------------------------------------------------------- /tests/test-fmt-rff-blood_encrypted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-rff-blood_encrypted.cpp -------------------------------------------------------------------------------- /tests/test-fmt-roads-skyroads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-roads-skyroads.cpp -------------------------------------------------------------------------------- /tests/test-fmt-vol-cosmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-vol-cosmo.cpp -------------------------------------------------------------------------------- /tests/test-fmt-wad-doom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/test-fmt-wad-doom.cpp -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/tests.cpp -------------------------------------------------------------------------------- /tests/tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/tests/tests.hpp -------------------------------------------------------------------------------- /win32/gamearch/gamearch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/gamearch/gamearch.vcxproj -------------------------------------------------------------------------------- /win32/gamearch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/gamearch/packages.config -------------------------------------------------------------------------------- /win32/gamecomp/gamecomp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/gamecomp/gamecomp.vcxproj -------------------------------------------------------------------------------- /win32/gamecomp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/gamecomp/packages.config -------------------------------------------------------------------------------- /win32/libgamearchive-tests/libgamearchive-tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive-tests/libgamearchive-tests.vcxproj -------------------------------------------------------------------------------- /win32/libgamearchive-tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive-tests/packages.config -------------------------------------------------------------------------------- /win32/libgamearchive.autopkg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive.autopkg.template -------------------------------------------------------------------------------- /win32/libgamearchive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive.sln -------------------------------------------------------------------------------- /win32/libgamearchive/libgamearchive.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive/libgamearchive.vcxproj -------------------------------------------------------------------------------- /win32/libgamearchive/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malvineous/libgamearchive/HEAD/win32/libgamearchive/packages.config --------------------------------------------------------------------------------