├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── Base.props ├── CONTRIBUTING.md ├── Debug.props ├── Makefile ├── README.md ├── Release.props ├── UNLICENSE.txt ├── bin └── bin │ ├── cacert.pem │ ├── scripts │ ├── install_dotnet480.sh │ └── setup_mirror.bat │ ├── steam_api.dll │ ├── update.json │ └── vc_redist.x86.exe ├── docs ├── 1_index.md ├── 2_files.md └── 3_repos.md ├── gfx └── abstractcactus │ ├── favicon.png │ ├── icon_01.ico │ ├── icon_01.png │ ├── icon_02.png │ ├── logo_01.png │ ├── logo_02.ico │ ├── logo_02.png │ └── logo_03.png ├── i18n └── thcrap_configure │ └── ru.json ├── libs ├── Static+Dynamic.props ├── act-nut-lib.vcxproj ├── bmpfont_create.def ├── bmpfont_create.vcxproj ├── bmpfont_create_gdi.vcxproj ├── bmpfont_create_gdiplus.vcxproj ├── bmpfont_create_plugin.def ├── external_deps.vcxproj ├── include │ └── ThreadPool.h └── win32_utf8.vcxproj ├── mkdocs.yml ├── scripts ├── appveyor-dev.pem.enc ├── appveyor-dev.pfx.enc ├── id_ed25519.enc ├── release_build.sh ├── release_sign.py ├── repo_update.py └── utils.py ├── thcrap.props ├── thcrap.sln ├── thcrap ├── src │ ├── binhack.cpp │ ├── binhack.h │ ├── bp_entry.asm │ ├── bp_entry_64.asm │ ├── bp_file.cpp │ ├── bp_file.h │ ├── breakpoint.cpp │ ├── breakpoint.h │ ├── build_str.h │ ├── compiler_support.h │ ├── dialog.cpp │ ├── dialog.h │ ├── dict_translate.cpp │ ├── exception.cpp │ ├── exception.h │ ├── expression.cpp │ ├── expression.h │ ├── fonts_charset.cpp │ ├── fonts_charset.h │ ├── gcc_gs.c │ ├── global.cpp │ ├── global.h │ ├── init.cpp │ ├── init.h │ ├── inject.cpp │ ├── inject.h │ ├── inject_func.asm │ ├── jansson_ex.cpp │ ├── jansson_ex.h │ ├── jsondata.cpp │ ├── jsondata.h │ ├── log.cpp │ ├── log.h │ ├── long_double.h │ ├── mempatch.cpp │ ├── mempatch.h │ ├── minid3d.cpp │ ├── minid3d.h │ ├── ntdll.cpp │ ├── ntdll.h │ ├── patchfile.cpp │ ├── patchfile.h │ ├── pe.cpp │ ├── pe.h │ ├── plugin.cpp │ ├── plugin.h │ ├── promote.cpp │ ├── promote.h │ ├── repatch.cpp │ ├── repatch.h │ ├── repo.cpp │ ├── repo.h │ ├── runconfig.cpp │ ├── runconfig.h │ ├── search.cpp │ ├── search.h │ ├── sha256.cpp │ ├── sha256.h │ ├── shelllink.cpp │ ├── shelllink.h │ ├── stack.cpp │ ├── stack.h │ ├── steam.cpp │ ├── str_to_addr.asm │ ├── str_to_addr_64.asm │ ├── strings.cpp │ ├── strings.h │ ├── strings_array.cpp │ ├── strings_array.h │ ├── textdisp.cpp │ ├── textdisp.h │ ├── thcrap.h │ ├── thcrap_update_wrapper.cpp │ ├── thcrap_update_wrapper.h │ ├── tlnote.cpp │ ├── tlnote.hpp │ ├── util.cpp │ ├── util.h │ ├── vfs.cpp │ ├── vfs.h │ ├── win32_detour.cpp │ ├── win32_detour.h │ ├── xpcompat.cpp │ ├── xpcompat.h │ ├── zip.cpp │ └── zip.h ├── thcrap.vcxproj ├── thcrap_x64.def ├── thcrap_x64_d.def ├── thcrap_x86.def └── thcrap_x86_d.def ├── thcrap_bgmmod ├── src │ ├── bgmmod.cpp │ ├── bgmmod.hpp │ ├── flac.cpp │ ├── mmio.cpp │ ├── mp3.cpp │ └── vorbis.cpp └── thcrap_bgmmod.vcxproj ├── thcrap_configure ├── src │ ├── configure.cpp │ ├── configure.h │ ├── configure_search.cpp │ ├── console.h │ ├── dialog.h │ ├── resource.h │ ├── select.cpp │ └── winconsole.cpp ├── thcrap_configure.manifest ├── thcrap_configure.rc └── thcrap_configure.vcxproj ├── thcrap_configure_v3 ├── App.config ├── App.xaml ├── App.xaml.cs ├── DownloadPage.xaml ├── DownloadPage.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Page2.xaml ├── Page2.xaml.cs ├── Page2_advanced.xaml ├── Page2_advanced.xaml.cs ├── Page2_simple.xaml ├── Page2_simple.xaml.cs ├── Page4.xaml ├── Page4.xaml.cs ├── Page5.xaml ├── Page5.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── app.manifest └── thcrap_configure_v3.csproj ├── thcrap_i18n ├── src │ ├── dllmain.cpp │ ├── files.cpp │ ├── i18n.cpp │ ├── i18n_private.h │ ├── plurals.cpp │ ├── resource.h │ └── thcrap_i18n.h ├── thcrap_i18n.def ├── thcrap_i18n.rc └── thcrap_i18n.vcxproj ├── thcrap_loader ├── src │ ├── loader.cpp │ └── postupdate.cpp └── thcrap_loader.vcxproj ├── thcrap_tasofro ├── src │ ├── act-nut.cpp │ ├── act-nut.h │ ├── arabic_bidi.cpp │ ├── bgm.cpp │ ├── bgm.h │ ├── crypt.cpp │ ├── crypt.h │ ├── csv.cpp │ ├── cv0.cpp │ ├── cv0.h │ ├── files_list.cpp │ ├── files_list.h │ ├── mediawiki.cpp │ ├── mediawiki.h │ ├── nhtex.cpp │ ├── nhtex.h │ ├── nsml.cpp │ ├── nsml_images.cpp │ ├── nsml_images.h │ ├── pl.cpp │ ├── pl.h │ ├── plaintext.cpp │ ├── plugin.cpp │ ├── plugin.h │ ├── png.cpp │ ├── png.h │ ├── spellcards_generator.cpp │ ├── spellcards_generator.h │ ├── tasofro_file.cpp │ ├── tasofro_file.h │ ├── tfcs.cpp │ ├── tfcs.h │ ├── th135.cpp │ ├── th155_bmp_font.cpp │ ├── th155_bmp_font.h │ ├── th175.cpp │ ├── th175_json.cpp │ ├── th175_pl.cpp │ ├── th175_pl_ed.cpp │ ├── thcrap_tasofro.cpp │ └── thcrap_tasofro.h ├── thcrap_tasofro.def └── thcrap_tasofro.vcxproj ├── thcrap_test ├── src │ ├── expression.cpp │ ├── patchfile.cpp │ ├── plugin.cpp │ ├── repo.cpp │ ├── repo_discovery.cpp │ ├── runconfig.cpp │ ├── search.cpp │ ├── search_for_games.cpp │ ├── stack.cpp │ ├── thcrap_tasofro_pl_ed.cpp │ └── win32_utf8.cpp └── thcrap_test.vcxproj ├── thcrap_tsa ├── src │ ├── anm.cpp │ ├── anm.hpp │ ├── anm_bounds.cpp │ ├── ascii.cpp │ ├── ascii.hpp │ ├── bgm.cpp │ ├── bp_mission.cpp │ ├── cfg.cpp │ ├── devicelost.cpp │ ├── gentext.cpp │ ├── input.cpp │ ├── layout.cpp │ ├── layout.h │ ├── music.cpp │ ├── png_ex.cpp │ ├── png_ex.h │ ├── screenshot.cpp │ ├── spells.cpp │ ├── textimage.cpp │ ├── textimage.hpp │ ├── th06_bp_file.c │ ├── th06_bp_music.cpp │ ├── th06_msg.cpp │ ├── th06_pngsplit.c │ ├── th06_pngsplit.h │ ├── thcrap_tsa.cpp │ ├── thcrap_tsa.h │ └── win32_tsa.cpp ├── thcrap_tsa.def └── thcrap_tsa.vcxproj ├── thcrap_update ├── src │ ├── 3rdparty │ │ └── crc32.h │ ├── download_url.cpp │ ├── download_url.h │ ├── downloader.cpp │ ├── downloader.h │ ├── file.cpp │ ├── file.h │ ├── http_curl.cpp │ ├── http_curl.h │ ├── http_interface.h │ ├── http_status.cpp │ ├── http_status.h │ ├── http_wininet.cpp │ ├── http_wininet.h │ ├── loader_update.cpp │ ├── loader_update.h │ ├── notify.cpp │ ├── notify.h │ ├── random.cpp │ ├── random.h │ ├── repo_discovery.cpp │ ├── repo_discovery.h │ ├── self.cpp │ ├── self.h │ ├── server.cpp │ ├── server.h │ ├── thcrap_update.cpp │ ├── thcrap_update_api.h │ ├── update.cpp │ └── update.h ├── thcrap_update.def └── thcrap_update.vcxproj ├── thcrap_wrapper ├── src │ ├── install_modules.c │ ├── install_popup.c │ ├── thcrap_wrapper.c │ ├── thcrap_wrapper.h │ └── utils.c ├── thcrap_configure_wrapper.rc ├── thcrap_configure_wrapper.vcxproj ├── thcrap_loader_wrapper.rc ├── thcrap_loader_wrapper.vcxproj └── thcrap_wrapper.props └── thcrap_x64_injector ├── src └── thcrap_x64_injector.cpp ├── thcrap_x64_injector.def └── thcrap_x64_injector.vcxproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: thpatch 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/.gitmodules -------------------------------------------------------------------------------- /Base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/Base.props -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/Debug.props -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/README.md -------------------------------------------------------------------------------- /Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/Release.props -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /bin/bin/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/cacert.pem -------------------------------------------------------------------------------- /bin/bin/scripts/install_dotnet480.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/scripts/install_dotnet480.sh -------------------------------------------------------------------------------- /bin/bin/scripts/setup_mirror.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/scripts/setup_mirror.bat -------------------------------------------------------------------------------- /bin/bin/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/steam_api.dll -------------------------------------------------------------------------------- /bin/bin/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/update.json -------------------------------------------------------------------------------- /bin/bin/vc_redist.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/bin/bin/vc_redist.x86.exe -------------------------------------------------------------------------------- /docs/1_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/docs/1_index.md -------------------------------------------------------------------------------- /docs/2_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/docs/2_files.md -------------------------------------------------------------------------------- /docs/3_repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/docs/3_repos.md -------------------------------------------------------------------------------- /gfx/abstractcactus/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/favicon.png -------------------------------------------------------------------------------- /gfx/abstractcactus/icon_01.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/icon_01.ico -------------------------------------------------------------------------------- /gfx/abstractcactus/icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/icon_01.png -------------------------------------------------------------------------------- /gfx/abstractcactus/icon_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/icon_02.png -------------------------------------------------------------------------------- /gfx/abstractcactus/logo_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/logo_01.png -------------------------------------------------------------------------------- /gfx/abstractcactus/logo_02.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/logo_02.ico -------------------------------------------------------------------------------- /gfx/abstractcactus/logo_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/logo_02.png -------------------------------------------------------------------------------- /gfx/abstractcactus/logo_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/gfx/abstractcactus/logo_03.png -------------------------------------------------------------------------------- /i18n/thcrap_configure/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/i18n/thcrap_configure/ru.json -------------------------------------------------------------------------------- /libs/Static+Dynamic.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/Static+Dynamic.props -------------------------------------------------------------------------------- /libs/act-nut-lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/act-nut-lib.vcxproj -------------------------------------------------------------------------------- /libs/bmpfont_create.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/bmpfont_create.def -------------------------------------------------------------------------------- /libs/bmpfont_create.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/bmpfont_create.vcxproj -------------------------------------------------------------------------------- /libs/bmpfont_create_gdi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/bmpfont_create_gdi.vcxproj -------------------------------------------------------------------------------- /libs/bmpfont_create_gdiplus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/bmpfont_create_gdiplus.vcxproj -------------------------------------------------------------------------------- /libs/bmpfont_create_plugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/bmpfont_create_plugin.def -------------------------------------------------------------------------------- /libs/external_deps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/external_deps.vcxproj -------------------------------------------------------------------------------- /libs/include/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/include/ThreadPool.h -------------------------------------------------------------------------------- /libs/win32_utf8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/libs/win32_utf8.vcxproj -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: Touhou Patch Center Docs 2 | -------------------------------------------------------------------------------- /scripts/appveyor-dev.pem.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/appveyor-dev.pem.enc -------------------------------------------------------------------------------- /scripts/appveyor-dev.pfx.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/appveyor-dev.pfx.enc -------------------------------------------------------------------------------- /scripts/id_ed25519.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/id_ed25519.enc -------------------------------------------------------------------------------- /scripts/release_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/release_build.sh -------------------------------------------------------------------------------- /scripts/release_sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/release_sign.py -------------------------------------------------------------------------------- /scripts/repo_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/repo_update.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /thcrap.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap.props -------------------------------------------------------------------------------- /thcrap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap.sln -------------------------------------------------------------------------------- /thcrap/src/binhack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/binhack.cpp -------------------------------------------------------------------------------- /thcrap/src/binhack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/binhack.h -------------------------------------------------------------------------------- /thcrap/src/bp_entry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/bp_entry.asm -------------------------------------------------------------------------------- /thcrap/src/bp_entry_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/bp_entry_64.asm -------------------------------------------------------------------------------- /thcrap/src/bp_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/bp_file.cpp -------------------------------------------------------------------------------- /thcrap/src/bp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/bp_file.h -------------------------------------------------------------------------------- /thcrap/src/breakpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/breakpoint.cpp -------------------------------------------------------------------------------- /thcrap/src/breakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/breakpoint.h -------------------------------------------------------------------------------- /thcrap/src/build_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/build_str.h -------------------------------------------------------------------------------- /thcrap/src/compiler_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/compiler_support.h -------------------------------------------------------------------------------- /thcrap/src/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/dialog.cpp -------------------------------------------------------------------------------- /thcrap/src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/dialog.h -------------------------------------------------------------------------------- /thcrap/src/dict_translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/dict_translate.cpp -------------------------------------------------------------------------------- /thcrap/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/exception.cpp -------------------------------------------------------------------------------- /thcrap/src/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/exception.h -------------------------------------------------------------------------------- /thcrap/src/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/expression.cpp -------------------------------------------------------------------------------- /thcrap/src/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/expression.h -------------------------------------------------------------------------------- /thcrap/src/fonts_charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/fonts_charset.cpp -------------------------------------------------------------------------------- /thcrap/src/fonts_charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/fonts_charset.h -------------------------------------------------------------------------------- /thcrap/src/gcc_gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/gcc_gs.c -------------------------------------------------------------------------------- /thcrap/src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/global.cpp -------------------------------------------------------------------------------- /thcrap/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/global.h -------------------------------------------------------------------------------- /thcrap/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/init.cpp -------------------------------------------------------------------------------- /thcrap/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/init.h -------------------------------------------------------------------------------- /thcrap/src/inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/inject.cpp -------------------------------------------------------------------------------- /thcrap/src/inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/inject.h -------------------------------------------------------------------------------- /thcrap/src/inject_func.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/inject_func.asm -------------------------------------------------------------------------------- /thcrap/src/jansson_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/jansson_ex.cpp -------------------------------------------------------------------------------- /thcrap/src/jansson_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/jansson_ex.h -------------------------------------------------------------------------------- /thcrap/src/jsondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/jsondata.cpp -------------------------------------------------------------------------------- /thcrap/src/jsondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/jsondata.h -------------------------------------------------------------------------------- /thcrap/src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/log.cpp -------------------------------------------------------------------------------- /thcrap/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/log.h -------------------------------------------------------------------------------- /thcrap/src/long_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/long_double.h -------------------------------------------------------------------------------- /thcrap/src/mempatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/mempatch.cpp -------------------------------------------------------------------------------- /thcrap/src/mempatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/mempatch.h -------------------------------------------------------------------------------- /thcrap/src/minid3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/minid3d.cpp -------------------------------------------------------------------------------- /thcrap/src/minid3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/minid3d.h -------------------------------------------------------------------------------- /thcrap/src/ntdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/ntdll.cpp -------------------------------------------------------------------------------- /thcrap/src/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/ntdll.h -------------------------------------------------------------------------------- /thcrap/src/patchfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/patchfile.cpp -------------------------------------------------------------------------------- /thcrap/src/patchfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/patchfile.h -------------------------------------------------------------------------------- /thcrap/src/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/pe.cpp -------------------------------------------------------------------------------- /thcrap/src/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/pe.h -------------------------------------------------------------------------------- /thcrap/src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/plugin.cpp -------------------------------------------------------------------------------- /thcrap/src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/plugin.h -------------------------------------------------------------------------------- /thcrap/src/promote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/promote.cpp -------------------------------------------------------------------------------- /thcrap/src/promote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/promote.h -------------------------------------------------------------------------------- /thcrap/src/repatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/repatch.cpp -------------------------------------------------------------------------------- /thcrap/src/repatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/repatch.h -------------------------------------------------------------------------------- /thcrap/src/repo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/repo.cpp -------------------------------------------------------------------------------- /thcrap/src/repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/repo.h -------------------------------------------------------------------------------- /thcrap/src/runconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/runconfig.cpp -------------------------------------------------------------------------------- /thcrap/src/runconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/runconfig.h -------------------------------------------------------------------------------- /thcrap/src/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/search.cpp -------------------------------------------------------------------------------- /thcrap/src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/search.h -------------------------------------------------------------------------------- /thcrap/src/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/sha256.cpp -------------------------------------------------------------------------------- /thcrap/src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/sha256.h -------------------------------------------------------------------------------- /thcrap/src/shelllink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/shelllink.cpp -------------------------------------------------------------------------------- /thcrap/src/shelllink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/shelllink.h -------------------------------------------------------------------------------- /thcrap/src/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/stack.cpp -------------------------------------------------------------------------------- /thcrap/src/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/stack.h -------------------------------------------------------------------------------- /thcrap/src/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/steam.cpp -------------------------------------------------------------------------------- /thcrap/src/str_to_addr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/str_to_addr.asm -------------------------------------------------------------------------------- /thcrap/src/str_to_addr_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/str_to_addr_64.asm -------------------------------------------------------------------------------- /thcrap/src/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/strings.cpp -------------------------------------------------------------------------------- /thcrap/src/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/strings.h -------------------------------------------------------------------------------- /thcrap/src/strings_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/strings_array.cpp -------------------------------------------------------------------------------- /thcrap/src/strings_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/strings_array.h -------------------------------------------------------------------------------- /thcrap/src/textdisp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/textdisp.cpp -------------------------------------------------------------------------------- /thcrap/src/textdisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/textdisp.h -------------------------------------------------------------------------------- /thcrap/src/thcrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/thcrap.h -------------------------------------------------------------------------------- /thcrap/src/thcrap_update_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/thcrap_update_wrapper.cpp -------------------------------------------------------------------------------- /thcrap/src/thcrap_update_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/thcrap_update_wrapper.h -------------------------------------------------------------------------------- /thcrap/src/tlnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/tlnote.cpp -------------------------------------------------------------------------------- /thcrap/src/tlnote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/tlnote.hpp -------------------------------------------------------------------------------- /thcrap/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/util.cpp -------------------------------------------------------------------------------- /thcrap/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/util.h -------------------------------------------------------------------------------- /thcrap/src/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/vfs.cpp -------------------------------------------------------------------------------- /thcrap/src/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/vfs.h -------------------------------------------------------------------------------- /thcrap/src/win32_detour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/win32_detour.cpp -------------------------------------------------------------------------------- /thcrap/src/win32_detour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/win32_detour.h -------------------------------------------------------------------------------- /thcrap/src/xpcompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/xpcompat.cpp -------------------------------------------------------------------------------- /thcrap/src/xpcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/xpcompat.h -------------------------------------------------------------------------------- /thcrap/src/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/zip.cpp -------------------------------------------------------------------------------- /thcrap/src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/src/zip.h -------------------------------------------------------------------------------- /thcrap/thcrap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/thcrap.vcxproj -------------------------------------------------------------------------------- /thcrap/thcrap_x64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/thcrap_x64.def -------------------------------------------------------------------------------- /thcrap/thcrap_x64_d.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/thcrap_x64_d.def -------------------------------------------------------------------------------- /thcrap/thcrap_x86.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/thcrap_x86.def -------------------------------------------------------------------------------- /thcrap/thcrap_x86_d.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap/thcrap_x86_d.def -------------------------------------------------------------------------------- /thcrap_bgmmod/src/bgmmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/bgmmod.cpp -------------------------------------------------------------------------------- /thcrap_bgmmod/src/bgmmod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/bgmmod.hpp -------------------------------------------------------------------------------- /thcrap_bgmmod/src/flac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/flac.cpp -------------------------------------------------------------------------------- /thcrap_bgmmod/src/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/mmio.cpp -------------------------------------------------------------------------------- /thcrap_bgmmod/src/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/mp3.cpp -------------------------------------------------------------------------------- /thcrap_bgmmod/src/vorbis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/src/vorbis.cpp -------------------------------------------------------------------------------- /thcrap_bgmmod/thcrap_bgmmod.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_bgmmod/thcrap_bgmmod.vcxproj -------------------------------------------------------------------------------- /thcrap_configure/src/configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/configure.cpp -------------------------------------------------------------------------------- /thcrap_configure/src/configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/configure.h -------------------------------------------------------------------------------- /thcrap_configure/src/configure_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/configure_search.cpp -------------------------------------------------------------------------------- /thcrap_configure/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/console.h -------------------------------------------------------------------------------- /thcrap_configure/src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/dialog.h -------------------------------------------------------------------------------- /thcrap_configure/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/resource.h -------------------------------------------------------------------------------- /thcrap_configure/src/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/select.cpp -------------------------------------------------------------------------------- /thcrap_configure/src/winconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/src/winconsole.cpp -------------------------------------------------------------------------------- /thcrap_configure/thcrap_configure.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/thcrap_configure.manifest -------------------------------------------------------------------------------- /thcrap_configure/thcrap_configure.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/thcrap_configure.rc -------------------------------------------------------------------------------- /thcrap_configure/thcrap_configure.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure/thcrap_configure.vcxproj -------------------------------------------------------------------------------- /thcrap_configure_v3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/App.config -------------------------------------------------------------------------------- /thcrap_configure_v3/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/App.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/App.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/DownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/DownloadPage.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/DownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/DownloadPage.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/MainWindow.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/MainWindow.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2_advanced.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2_advanced.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2_advanced.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2_advanced.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2_simple.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2_simple.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/Page2_simple.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page2_simple.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Page4.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page4.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/Page4.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page4.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Page5.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page5.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/Page5.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Page5.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Properties/Resources.resx -------------------------------------------------------------------------------- /thcrap_configure_v3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/Properties/Settings.settings -------------------------------------------------------------------------------- /thcrap_configure_v3/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/SettingsWindow.xaml -------------------------------------------------------------------------------- /thcrap_configure_v3/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /thcrap_configure_v3/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/app.manifest -------------------------------------------------------------------------------- /thcrap_configure_v3/thcrap_configure_v3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_configure_v3/thcrap_configure_v3.csproj -------------------------------------------------------------------------------- /thcrap_i18n/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/dllmain.cpp -------------------------------------------------------------------------------- /thcrap_i18n/src/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/files.cpp -------------------------------------------------------------------------------- /thcrap_i18n/src/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/i18n.cpp -------------------------------------------------------------------------------- /thcrap_i18n/src/i18n_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/i18n_private.h -------------------------------------------------------------------------------- /thcrap_i18n/src/plurals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/plurals.cpp -------------------------------------------------------------------------------- /thcrap_i18n/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/resource.h -------------------------------------------------------------------------------- /thcrap_i18n/src/thcrap_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/src/thcrap_i18n.h -------------------------------------------------------------------------------- /thcrap_i18n/thcrap_i18n.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/thcrap_i18n.def -------------------------------------------------------------------------------- /thcrap_i18n/thcrap_i18n.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/thcrap_i18n.rc -------------------------------------------------------------------------------- /thcrap_i18n/thcrap_i18n.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_i18n/thcrap_i18n.vcxproj -------------------------------------------------------------------------------- /thcrap_loader/src/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_loader/src/loader.cpp -------------------------------------------------------------------------------- /thcrap_loader/src/postupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_loader/src/postupdate.cpp -------------------------------------------------------------------------------- /thcrap_loader/thcrap_loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_loader/thcrap_loader.vcxproj -------------------------------------------------------------------------------- /thcrap_tasofro/src/act-nut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/act-nut.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/act-nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/act-nut.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/arabic_bidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/arabic_bidi.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/bgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/bgm.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/bgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/bgm.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/crypt.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/crypt.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/csv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/csv.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/cv0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/cv0.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/cv0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/cv0.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/files_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/files_list.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/files_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/files_list.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/mediawiki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/mediawiki.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/mediawiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/mediawiki.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/nhtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/nhtex.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/nhtex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/nhtex.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/nsml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/nsml.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/nsml_images.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/nsml_images.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/nsml_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/nsml_images.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/pl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/pl.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/pl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/pl.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/plaintext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/plaintext.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/plugin.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/plugin.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/png.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/png.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/spellcards_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/spellcards_generator.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/spellcards_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/spellcards_generator.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/tasofro_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/tasofro_file.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/tasofro_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/tasofro_file.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/tfcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/tfcs.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/tfcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/tfcs.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/th135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th135.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/th155_bmp_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th155_bmp_font.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/th155_bmp_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th155_bmp_font.h -------------------------------------------------------------------------------- /thcrap_tasofro/src/th175.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th175.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/th175_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th175_json.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/th175_pl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th175_pl.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/th175_pl_ed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/th175_pl_ed.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/thcrap_tasofro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/thcrap_tasofro.cpp -------------------------------------------------------------------------------- /thcrap_tasofro/src/thcrap_tasofro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/src/thcrap_tasofro.h -------------------------------------------------------------------------------- /thcrap_tasofro/thcrap_tasofro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/thcrap_tasofro.def -------------------------------------------------------------------------------- /thcrap_tasofro/thcrap_tasofro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tasofro/thcrap_tasofro.vcxproj -------------------------------------------------------------------------------- /thcrap_test/src/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/expression.cpp -------------------------------------------------------------------------------- /thcrap_test/src/patchfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/patchfile.cpp -------------------------------------------------------------------------------- /thcrap_test/src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/plugin.cpp -------------------------------------------------------------------------------- /thcrap_test/src/repo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/repo.cpp -------------------------------------------------------------------------------- /thcrap_test/src/repo_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/repo_discovery.cpp -------------------------------------------------------------------------------- /thcrap_test/src/runconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/runconfig.cpp -------------------------------------------------------------------------------- /thcrap_test/src/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/search.cpp -------------------------------------------------------------------------------- /thcrap_test/src/search_for_games.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/search_for_games.cpp -------------------------------------------------------------------------------- /thcrap_test/src/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/stack.cpp -------------------------------------------------------------------------------- /thcrap_test/src/thcrap_tasofro_pl_ed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/thcrap_tasofro_pl_ed.cpp -------------------------------------------------------------------------------- /thcrap_test/src/win32_utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/src/win32_utf8.cpp -------------------------------------------------------------------------------- /thcrap_test/thcrap_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_test/thcrap_test.vcxproj -------------------------------------------------------------------------------- /thcrap_tsa/src/anm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/anm.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/anm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/anm.hpp -------------------------------------------------------------------------------- /thcrap_tsa/src/anm_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/anm_bounds.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/ascii.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/ascii.hpp -------------------------------------------------------------------------------- /thcrap_tsa/src/bgm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/bgm.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/bp_mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/bp_mission.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/cfg.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/devicelost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/devicelost.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/gentext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/gentext.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/input.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/layout.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/layout.h -------------------------------------------------------------------------------- /thcrap_tsa/src/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/music.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/png_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/png_ex.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/png_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/png_ex.h -------------------------------------------------------------------------------- /thcrap_tsa/src/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/screenshot.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/spells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/spells.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/textimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/textimage.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/textimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/textimage.hpp -------------------------------------------------------------------------------- /thcrap_tsa/src/th06_bp_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/th06_bp_file.c -------------------------------------------------------------------------------- /thcrap_tsa/src/th06_bp_music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/th06_bp_music.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/th06_msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/th06_msg.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/th06_pngsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/th06_pngsplit.c -------------------------------------------------------------------------------- /thcrap_tsa/src/th06_pngsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/th06_pngsplit.h -------------------------------------------------------------------------------- /thcrap_tsa/src/thcrap_tsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/thcrap_tsa.cpp -------------------------------------------------------------------------------- /thcrap_tsa/src/thcrap_tsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/thcrap_tsa.h -------------------------------------------------------------------------------- /thcrap_tsa/src/win32_tsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/src/win32_tsa.cpp -------------------------------------------------------------------------------- /thcrap_tsa/thcrap_tsa.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/thcrap_tsa.def -------------------------------------------------------------------------------- /thcrap_tsa/thcrap_tsa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_tsa/thcrap_tsa.vcxproj -------------------------------------------------------------------------------- /thcrap_update/src/3rdparty/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/3rdparty/crc32.h -------------------------------------------------------------------------------- /thcrap_update/src/download_url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/download_url.cpp -------------------------------------------------------------------------------- /thcrap_update/src/download_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/download_url.h -------------------------------------------------------------------------------- /thcrap_update/src/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/downloader.cpp -------------------------------------------------------------------------------- /thcrap_update/src/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/downloader.h -------------------------------------------------------------------------------- /thcrap_update/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/file.cpp -------------------------------------------------------------------------------- /thcrap_update/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/file.h -------------------------------------------------------------------------------- /thcrap_update/src/http_curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_curl.cpp -------------------------------------------------------------------------------- /thcrap_update/src/http_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_curl.h -------------------------------------------------------------------------------- /thcrap_update/src/http_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_interface.h -------------------------------------------------------------------------------- /thcrap_update/src/http_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_status.cpp -------------------------------------------------------------------------------- /thcrap_update/src/http_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_status.h -------------------------------------------------------------------------------- /thcrap_update/src/http_wininet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_wininet.cpp -------------------------------------------------------------------------------- /thcrap_update/src/http_wininet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/http_wininet.h -------------------------------------------------------------------------------- /thcrap_update/src/loader_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/loader_update.cpp -------------------------------------------------------------------------------- /thcrap_update/src/loader_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/loader_update.h -------------------------------------------------------------------------------- /thcrap_update/src/notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/notify.cpp -------------------------------------------------------------------------------- /thcrap_update/src/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/notify.h -------------------------------------------------------------------------------- /thcrap_update/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/random.cpp -------------------------------------------------------------------------------- /thcrap_update/src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/random.h -------------------------------------------------------------------------------- /thcrap_update/src/repo_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/repo_discovery.cpp -------------------------------------------------------------------------------- /thcrap_update/src/repo_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/repo_discovery.h -------------------------------------------------------------------------------- /thcrap_update/src/self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/self.cpp -------------------------------------------------------------------------------- /thcrap_update/src/self.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/self.h -------------------------------------------------------------------------------- /thcrap_update/src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/server.cpp -------------------------------------------------------------------------------- /thcrap_update/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/server.h -------------------------------------------------------------------------------- /thcrap_update/src/thcrap_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/thcrap_update.cpp -------------------------------------------------------------------------------- /thcrap_update/src/thcrap_update_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/thcrap_update_api.h -------------------------------------------------------------------------------- /thcrap_update/src/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/update.cpp -------------------------------------------------------------------------------- /thcrap_update/src/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/src/update.h -------------------------------------------------------------------------------- /thcrap_update/thcrap_update.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/thcrap_update.def -------------------------------------------------------------------------------- /thcrap_update/thcrap_update.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_update/thcrap_update.vcxproj -------------------------------------------------------------------------------- /thcrap_wrapper/src/install_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/src/install_modules.c -------------------------------------------------------------------------------- /thcrap_wrapper/src/install_popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/src/install_popup.c -------------------------------------------------------------------------------- /thcrap_wrapper/src/thcrap_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/src/thcrap_wrapper.c -------------------------------------------------------------------------------- /thcrap_wrapper/src/thcrap_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/src/thcrap_wrapper.h -------------------------------------------------------------------------------- /thcrap_wrapper/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/src/utils.c -------------------------------------------------------------------------------- /thcrap_wrapper/thcrap_configure_wrapper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/thcrap_configure_wrapper.rc -------------------------------------------------------------------------------- /thcrap_wrapper/thcrap_configure_wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/thcrap_configure_wrapper.vcxproj -------------------------------------------------------------------------------- /thcrap_wrapper/thcrap_loader_wrapper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/thcrap_loader_wrapper.rc -------------------------------------------------------------------------------- /thcrap_wrapper/thcrap_loader_wrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/thcrap_loader_wrapper.vcxproj -------------------------------------------------------------------------------- /thcrap_wrapper/thcrap_wrapper.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_wrapper/thcrap_wrapper.props -------------------------------------------------------------------------------- /thcrap_x64_injector/src/thcrap_x64_injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_x64_injector/src/thcrap_x64_injector.cpp -------------------------------------------------------------------------------- /thcrap_x64_injector/thcrap_x64_injector.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_x64_injector/thcrap_x64_injector.def -------------------------------------------------------------------------------- /thcrap_x64_injector/thcrap_x64_injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/thcrap/HEAD/thcrap_x64_injector/thcrap_x64_injector.vcxproj --------------------------------------------------------------------------------