├── .gitattributes ├── .gitignore ├── DInputLogger ├── DInputLogger.sln ├── DInputLogger │ ├── DInputLogger.rc │ ├── DInputLogger.vcxproj │ ├── DInputLogger.vcxproj.filters │ ├── DirectInputA.cpp │ ├── DirectInputA.h │ ├── DirectInputDeviceA.cpp │ ├── DirectInputDeviceA.h │ ├── common.h │ ├── dinput.cpp │ ├── dinput.def │ ├── logger.cpp │ ├── logger.h │ ├── resource.h │ ├── targetver.h │ ├── utils.cpp │ └── utils.h └── zip │ └── dinput.dll ├── README.md ├── Samples ├── Xwa_Hook_HelloWorld_Cpp │ ├── Hook_HelloWorld │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.h │ │ ├── Hook_HelloWorld.rc │ │ ├── Hook_HelloWorld.vcxproj │ │ ├── Hook_HelloWorld.vcxproj.filters │ │ ├── hook_function.h │ │ ├── hookmain.cpp │ │ ├── hooks.h │ │ ├── resource.h │ │ └── targetver.h │ ├── Xwa_Hook_HelloWorld_Cpp.sln │ ├── exe_edit.txt │ └── zip │ │ ├── Hook_HelloWorld.dll │ │ ├── Xwa_Hook_HelloWorld.zip │ │ └── readme.txt └── Xwa_Hook_HelloWorld_Cs │ ├── Hook_HelloWorld │ ├── HelloWorld.cs │ ├── HookFunction.cs │ ├── HookMain.cs │ ├── Hook_HelloWorld.csproj │ └── Hooks.cs │ ├── Xwa_Hook_HelloWorld_Cs.sln │ ├── exe_edit.txt │ └── zip │ ├── Hook_HelloWorld.dll │ ├── Xwa_Hook_HelloWorld.zip │ └── readme.txt ├── xwa_hook_32bpp ├── Xwa32bppPlayer │ ├── Xwa32bppPlayer.sln │ └── Xwa32bppPlayer │ │ ├── 32bpp.cpp │ │ ├── 32bpp.h │ │ ├── SharedMemory.cpp │ │ ├── SharedMemory.h │ │ ├── Xwa32bppPlayer.cpp │ │ ├── Xwa32bppPlayer.h │ │ ├── Xwa32bppPlayer.ico │ │ ├── Xwa32bppPlayer.rc │ │ ├── Xwa32bppPlayer.vcxproj │ │ ├── Xwa32bppPlayer.vcxproj.filters │ │ ├── framework.h │ │ ├── packages.config │ │ ├── resource.h │ │ ├── small.ico │ │ └── targetver.h ├── Xwa32bppPlayerNet │ ├── Xwa32bppPlayerNet.sln │ └── Xwa32bppPlayerNet │ │ ├── Main.cs │ │ ├── Xwa32bppPlayerNet.csproj │ │ └── XwaHooksConfig.cs ├── exe_edit.txt ├── hook_32bpp │ ├── 32bpp.cpp │ ├── 32bpp.h │ ├── SharedMemory.cpp │ ├── SharedMemory.h │ ├── config.cpp │ ├── config.h │ ├── dllmain.cpp │ ├── hook_32bpp.rc │ ├── hook_32bpp.vcxproj │ ├── hook_32bpp.vcxproj.filters │ ├── hook_function.h │ ├── hookexe.cpp │ ├── hookexe.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── hook_32bpp_net │ ├── hook_32bpp_net.sln │ └── hook_32bpp_net │ │ ├── Main.cs │ │ ├── SevenZip │ │ ├── CRC.cs │ │ ├── Compression │ │ │ ├── LZ │ │ │ │ ├── BinTree.cs │ │ │ │ ├── IMatchFinder.cs │ │ │ │ ├── InWindow.cs │ │ │ │ └── OutWindow.cs │ │ │ ├── LZMA │ │ │ │ ├── Base.cs │ │ │ │ ├── Decoder.cs │ │ │ │ └── Encoder.cs │ │ │ └── RangeCoder │ │ │ │ ├── BitEncoder.cs │ │ │ │ ├── BitTreeEncoder.cs │ │ │ │ └── Encoder.cs │ │ └── ICoder.cs │ │ ├── XwaHooksConfig.cs │ │ └── hook_32bpp_net.csproj ├── xwa_hook_32bpp.sln └── zip │ ├── JeremyAnsel.ColorQuant.dll │ ├── JeremyAnsel.Xwa.Opt.dll │ ├── Skins.txt │ ├── Skins │ └── XWing │ │ └── Default │ │ └── Tex00033.png │ ├── System.Drawing.Common.dll │ ├── Xwa32bppPlayer.exe │ ├── Xwa32bppPlayerNet.dll │ ├── hook_32bpp.cfg │ ├── hook_32bpp.dll │ ├── hook_32bpp_net.dll │ ├── readme.txt │ └── xwa_hook_32bpp.zip ├── xwa_hook_backdrops ├── exe_edit.txt ├── hook_backdrops │ ├── backdrops.cpp │ ├── backdrops.h │ ├── config.cpp │ ├── config.h │ ├── hook_backdrops.rc │ ├── hook_backdrops.vcxproj │ ├── hook_backdrops.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_backdrops.sln └── zip │ ├── BackdropScales.txt │ ├── hook_backdrops.dll │ ├── mission_BackdropScales.txt │ ├── readme.txt │ └── xwa_hook_backdrops.zip ├── xwa_hook_concourse ├── XwaConcoursePlayer │ ├── XwaConcoursePlayer.sln │ ├── XwaConcoursePlayer │ │ ├── ComPtr.h │ │ ├── XwaConcoursePlayer.cpp │ │ ├── XwaConcoursePlayer.h │ │ ├── XwaConcoursePlayer.ico │ │ ├── XwaConcoursePlayer.rc │ │ ├── XwaConcoursePlayer.vcxproj │ │ ├── XwaConcoursePlayer.vcxproj.filters │ │ ├── concourse.cpp │ │ ├── concourse.h │ │ ├── framework.h │ │ ├── packages.config │ │ ├── resource.h │ │ ├── small.ico │ │ ├── targetver.h │ │ ├── webm_helpers.cpp │ │ └── webm_helpers.h │ ├── libvpx │ │ ├── ivfenc.c │ │ ├── ivfenc.h │ │ ├── libvpx.vcxproj │ │ ├── libvpx.vcxproj.filters │ │ ├── tools_common.c │ │ ├── tools_common.h │ │ ├── vp8 │ │ │ ├── common │ │ │ │ ├── alloccommon.c │ │ │ │ ├── alloccommon.h │ │ │ │ ├── blockd.c │ │ │ │ ├── blockd.h │ │ │ │ ├── coefupdateprobs.h │ │ │ │ ├── common.h │ │ │ │ ├── context.c │ │ │ │ ├── debugmodes.c │ │ │ │ ├── default_coef_probs.h │ │ │ │ ├── dequantize.c │ │ │ │ ├── entropy.c │ │ │ │ ├── entropy.h │ │ │ │ ├── entropymode.c │ │ │ │ ├── entropymode.h │ │ │ │ ├── entropymv.c │ │ │ │ ├── entropymv.h │ │ │ │ ├── extend.c │ │ │ │ ├── extend.h │ │ │ │ ├── filter.c │ │ │ │ ├── filter.h │ │ │ │ ├── findnearmv.c │ │ │ │ ├── findnearmv.h │ │ │ │ ├── generic │ │ │ │ │ └── systemdependent.c │ │ │ │ ├── header.h │ │ │ │ ├── idct_blk.c │ │ │ │ ├── idctllm.c │ │ │ │ ├── invtrans.h │ │ │ │ ├── loopfilter.h │ │ │ │ ├── loopfilter_filters.c │ │ │ │ ├── mbpitch.c │ │ │ │ ├── mfqe.c │ │ │ │ ├── modecont.c │ │ │ │ ├── modecont.h │ │ │ │ ├── mv.h │ │ │ │ ├── onyx.h │ │ │ │ ├── onyxc_int.h │ │ │ │ ├── onyxd.h │ │ │ │ ├── postproc.c │ │ │ │ ├── postproc.h │ │ │ │ ├── ppflags.h │ │ │ │ ├── quant_common.c │ │ │ │ ├── quant_common.h │ │ │ │ ├── reconinter.c │ │ │ │ ├── reconinter.h │ │ │ │ ├── reconintra.c │ │ │ │ ├── reconintra.h │ │ │ │ ├── reconintra4x4.c │ │ │ │ ├── reconintra4x4.h │ │ │ │ ├── rtcd.c │ │ │ │ ├── rtcd_defs.pl │ │ │ │ ├── setupintrarecon.c │ │ │ │ ├── setupintrarecon.h │ │ │ │ ├── swapyv12buffer.c │ │ │ │ ├── swapyv12buffer.h │ │ │ │ ├── systemdependent.h │ │ │ │ ├── threading.h │ │ │ │ ├── treecoder.c │ │ │ │ ├── treecoder.h │ │ │ │ ├── vp8_entropymodedata.h │ │ │ │ ├── vp8_loopfilter.c │ │ │ │ ├── vp8_skin_detection.c │ │ │ │ └── vp8_skin_detection.h │ │ │ ├── decoder │ │ │ │ ├── dboolhuff.c │ │ │ │ ├── dboolhuff.h │ │ │ │ ├── decodeframe.c │ │ │ │ ├── decodemv.c │ │ │ │ ├── decodemv.h │ │ │ │ ├── decoderthreading.h │ │ │ │ ├── detokenize.c │ │ │ │ ├── detokenize.h │ │ │ │ ├── ec_types.h │ │ │ │ ├── error_concealment.c │ │ │ │ ├── error_concealment.h │ │ │ │ ├── onyxd_if.c │ │ │ │ ├── onyxd_int.h │ │ │ │ └── treereader.h │ │ │ ├── encoder │ │ │ │ ├── bitstream.c │ │ │ │ ├── bitstream.h │ │ │ │ ├── block.h │ │ │ │ ├── boolhuff.c │ │ │ │ ├── boolhuff.h │ │ │ │ ├── copy_c.c │ │ │ │ ├── dct.c │ │ │ │ ├── dct_value_cost.h │ │ │ │ ├── dct_value_tokens.h │ │ │ │ ├── defaultcoefcounts.h │ │ │ │ ├── denoising.h │ │ │ │ ├── encodeframe.c │ │ │ │ ├── encodeframe.h │ │ │ │ ├── encodeintra.c │ │ │ │ ├── encodeintra.h │ │ │ │ ├── encodemb.c │ │ │ │ ├── encodemb.h │ │ │ │ ├── encodemv.c │ │ │ │ ├── encodemv.h │ │ │ │ ├── ethreading.c │ │ │ │ ├── ethreading.h │ │ │ │ ├── firstpass.c │ │ │ │ ├── firstpass.h │ │ │ │ ├── lookahead.c │ │ │ │ ├── lookahead.h │ │ │ │ ├── mcomp.c │ │ │ │ ├── mcomp.h │ │ │ │ ├── modecosts.c │ │ │ │ ├── modecosts.h │ │ │ │ ├── mr_dissim.c │ │ │ │ ├── mr_dissim.h │ │ │ │ ├── onyx_if.c │ │ │ │ ├── onyx_int.h │ │ │ │ ├── pickinter.c │ │ │ │ ├── pickinter.h │ │ │ │ ├── picklpf.c │ │ │ │ ├── picklpf.h │ │ │ │ ├── quantize.h │ │ │ │ ├── ratectrl.c │ │ │ │ ├── ratectrl.h │ │ │ │ ├── rdopt.c │ │ │ │ ├── rdopt.h │ │ │ │ ├── segmentation.c │ │ │ │ ├── segmentation.h │ │ │ │ ├── temporal_filter.c │ │ │ │ ├── temporal_filter.h │ │ │ │ ├── tokenize.c │ │ │ │ ├── tokenize.h │ │ │ │ ├── treewriter.c │ │ │ │ ├── treewriter.h │ │ │ │ └── vp8_quantize.c │ │ │ ├── vp8_cx_iface.c │ │ │ ├── vp8_dx_iface.c │ │ │ ├── vp8_ratectrl_rtc.cc │ │ │ └── vp8_ratectrl_rtc.h │ │ ├── vp8_rtcd.h │ │ ├── vp9 │ │ │ ├── common │ │ │ │ ├── vp9_alloccommon.c │ │ │ │ ├── vp9_alloccommon.h │ │ │ │ ├── vp9_blockd.c │ │ │ │ ├── vp9_blockd.h │ │ │ │ ├── vp9_common.h │ │ │ │ ├── vp9_common_data.c │ │ │ │ ├── vp9_common_data.h │ │ │ │ ├── vp9_debugmodes.c │ │ │ │ ├── vp9_entropy.c │ │ │ │ ├── vp9_entropy.h │ │ │ │ ├── vp9_entropymode.c │ │ │ │ ├── vp9_entropymode.h │ │ │ │ ├── vp9_entropymv.c │ │ │ │ ├── vp9_entropymv.h │ │ │ │ ├── vp9_enums.h │ │ │ │ ├── vp9_filter.c │ │ │ │ ├── vp9_filter.h │ │ │ │ ├── vp9_frame_buffers.c │ │ │ │ ├── vp9_frame_buffers.h │ │ │ │ ├── vp9_idct.c │ │ │ │ ├── vp9_idct.h │ │ │ │ ├── vp9_loopfilter.c │ │ │ │ ├── vp9_loopfilter.h │ │ │ │ ├── vp9_mfqe.c │ │ │ │ ├── vp9_mfqe.h │ │ │ │ ├── vp9_mv.h │ │ │ │ ├── vp9_mvref_common.c │ │ │ │ ├── vp9_mvref_common.h │ │ │ │ ├── vp9_onyxc_int.h │ │ │ │ ├── vp9_postproc.c │ │ │ │ ├── vp9_postproc.h │ │ │ │ ├── vp9_ppflags.h │ │ │ │ ├── vp9_pred_common.c │ │ │ │ ├── vp9_pred_common.h │ │ │ │ ├── vp9_quant_common.c │ │ │ │ ├── vp9_quant_common.h │ │ │ │ ├── vp9_reconinter.c │ │ │ │ ├── vp9_reconinter.h │ │ │ │ ├── vp9_reconintra.c │ │ │ │ ├── vp9_reconintra.h │ │ │ │ ├── vp9_rtcd.c │ │ │ │ ├── vp9_rtcd_defs.pl │ │ │ │ ├── vp9_scale.c │ │ │ │ ├── vp9_scale.h │ │ │ │ ├── vp9_scan.c │ │ │ │ ├── vp9_scan.h │ │ │ │ ├── vp9_seg_common.c │ │ │ │ ├── vp9_seg_common.h │ │ │ │ ├── vp9_thread_common.c │ │ │ │ ├── vp9_thread_common.h │ │ │ │ ├── vp9_tile_common.c │ │ │ │ └── vp9_tile_common.h │ │ │ ├── decoder │ │ │ │ ├── vp9_decodeframe.c │ │ │ │ ├── vp9_decodeframe.h │ │ │ │ ├── vp9_decodemv.c │ │ │ │ ├── vp9_decodemv.h │ │ │ │ ├── vp9_decoder.c │ │ │ │ ├── vp9_decoder.h │ │ │ │ ├── vp9_detokenize.c │ │ │ │ ├── vp9_detokenize.h │ │ │ │ ├── vp9_dsubexp.c │ │ │ │ ├── vp9_dsubexp.h │ │ │ │ ├── vp9_job_queue.c │ │ │ │ └── vp9_job_queue.h │ │ │ ├── encoder │ │ │ │ ├── vp9_alt_ref_aq.c │ │ │ │ ├── vp9_alt_ref_aq.h │ │ │ │ ├── vp9_aq_360.c │ │ │ │ ├── vp9_aq_360.h │ │ │ │ ├── vp9_aq_complexity.c │ │ │ │ ├── vp9_aq_complexity.h │ │ │ │ ├── vp9_aq_cyclicrefresh.c │ │ │ │ ├── vp9_aq_cyclicrefresh.h │ │ │ │ ├── vp9_aq_variance.c │ │ │ │ ├── vp9_aq_variance.h │ │ │ │ ├── vp9_bitstream.c │ │ │ │ ├── vp9_bitstream.h │ │ │ │ ├── vp9_block.h │ │ │ │ ├── vp9_blockiness.c │ │ │ │ ├── vp9_blockiness.h │ │ │ │ ├── vp9_context_tree.c │ │ │ │ ├── vp9_context_tree.h │ │ │ │ ├── vp9_cost.c │ │ │ │ ├── vp9_cost.h │ │ │ │ ├── vp9_dct.c │ │ │ │ ├── vp9_denoiser.h │ │ │ │ ├── vp9_encodeframe.c │ │ │ │ ├── vp9_encodeframe.h │ │ │ │ ├── vp9_encodemb.c │ │ │ │ ├── vp9_encodemb.h │ │ │ │ ├── vp9_encodemv.c │ │ │ │ ├── vp9_encodemv.h │ │ │ │ ├── vp9_encoder.c │ │ │ │ ├── vp9_encoder.h │ │ │ │ ├── vp9_ethread.c │ │ │ │ ├── vp9_ethread.h │ │ │ │ ├── vp9_ext_ratectrl.c │ │ │ │ ├── vp9_ext_ratectrl.h │ │ │ │ ├── vp9_extend.c │ │ │ │ ├── vp9_extend.h │ │ │ │ ├── vp9_firstpass.c │ │ │ │ ├── vp9_firstpass.h │ │ │ │ ├── vp9_frame_scale.c │ │ │ │ ├── vp9_job_queue.h │ │ │ │ ├── vp9_lookahead.c │ │ │ │ ├── vp9_lookahead.h │ │ │ │ ├── vp9_mbgraph.c │ │ │ │ ├── vp9_mbgraph.h │ │ │ │ ├── vp9_mcomp.c │ │ │ │ ├── vp9_mcomp.h │ │ │ │ ├── vp9_multi_thread.c │ │ │ │ ├── vp9_multi_thread.h │ │ │ │ ├── vp9_noise_estimate.c │ │ │ │ ├── vp9_noise_estimate.h │ │ │ │ ├── vp9_non_greedy_mv.c │ │ │ │ ├── vp9_non_greedy_mv.h │ │ │ │ ├── vp9_partition_models.h │ │ │ │ ├── vp9_picklpf.c │ │ │ │ ├── vp9_picklpf.h │ │ │ │ ├── vp9_pickmode.c │ │ │ │ ├── vp9_pickmode.h │ │ │ │ ├── vp9_quantize.c │ │ │ │ ├── vp9_quantize.h │ │ │ │ ├── vp9_ratectrl.c │ │ │ │ ├── vp9_ratectrl.h │ │ │ │ ├── vp9_rd.c │ │ │ │ ├── vp9_rd.h │ │ │ │ ├── vp9_rdopt.c │ │ │ │ ├── vp9_rdopt.h │ │ │ │ ├── vp9_resize.c │ │ │ │ ├── vp9_resize.h │ │ │ │ ├── vp9_segmentation.c │ │ │ │ ├── vp9_segmentation.h │ │ │ │ ├── vp9_skin_detection.c │ │ │ │ ├── vp9_skin_detection.h │ │ │ │ ├── vp9_speed_features.c │ │ │ │ ├── vp9_speed_features.h │ │ │ │ ├── vp9_subexp.c │ │ │ │ ├── vp9_subexp.h │ │ │ │ ├── vp9_svc_layercontext.c │ │ │ │ ├── vp9_svc_layercontext.h │ │ │ │ ├── vp9_temporal_filter.c │ │ │ │ ├── vp9_temporal_filter.h │ │ │ │ ├── vp9_tokenize.c │ │ │ │ ├── vp9_tokenize.h │ │ │ │ ├── vp9_treewriter.c │ │ │ │ └── vp9_treewriter.h │ │ │ ├── ratectrl_rtc.cc │ │ │ ├── ratectrl_rtc.h │ │ │ ├── simple_encode.cc │ │ │ ├── simple_encode.h │ │ │ ├── vp9_cx_iface.c │ │ │ ├── vp9_cx_iface.h │ │ │ ├── vp9_dx_iface.c │ │ │ ├── vp9_dx_iface.h │ │ │ ├── vp9_iface_common.c │ │ │ └── vp9_iface_common.h │ │ ├── vp9_rtcd.h │ │ ├── vpx │ │ │ ├── internal │ │ │ │ ├── vpx_codec_internal.h │ │ │ │ └── vpx_ratectrl_rtc.h │ │ │ ├── src │ │ │ │ ├── vpx_codec.c │ │ │ │ ├── vpx_decoder.c │ │ │ │ ├── vpx_encoder.c │ │ │ │ └── vpx_image.c │ │ │ ├── vp8.h │ │ │ ├── vp8cx.h │ │ │ ├── vp8dx.h │ │ │ ├── vpx_codec.h │ │ │ ├── vpx_decoder.h │ │ │ ├── vpx_encoder.h │ │ │ ├── vpx_ext_ratectrl.h │ │ │ ├── vpx_frame_buffer.h │ │ │ ├── vpx_image.h │ │ │ └── vpx_integer.h │ │ ├── vpx_config.asm │ │ ├── vpx_config.c │ │ ├── vpx_config.h │ │ ├── vpx_dsp │ │ │ ├── add_noise.c │ │ │ ├── avg.c │ │ │ ├── bitreader.c │ │ │ ├── bitreader.h │ │ │ ├── bitreader_buffer.c │ │ │ ├── bitreader_buffer.h │ │ │ ├── bitwriter.c │ │ │ ├── bitwriter.h │ │ │ ├── bitwriter_buffer.c │ │ │ ├── bitwriter_buffer.h │ │ │ ├── deblock.c │ │ │ ├── fastssim.c │ │ │ ├── fwd_txfm.c │ │ │ ├── fwd_txfm.h │ │ │ ├── intrapred.c │ │ │ ├── inv_txfm.c │ │ │ ├── inv_txfm.h │ │ │ ├── loopfilter.c │ │ │ ├── postproc.h │ │ │ ├── prob.c │ │ │ ├── prob.h │ │ │ ├── psnr.c │ │ │ ├── psnr.h │ │ │ ├── psnrhvs.c │ │ │ ├── quantize.c │ │ │ ├── quantize.h │ │ │ ├── sad.c │ │ │ ├── skin_detection.c │ │ │ ├── skin_detection.h │ │ │ ├── ssim.c │ │ │ ├── ssim.h │ │ │ ├── subtract.c │ │ │ ├── sum_squares.c │ │ │ ├── txfm_common.h │ │ │ ├── variance.c │ │ │ ├── variance.h │ │ │ ├── vpx_convolve.c │ │ │ ├── vpx_convolve.h │ │ │ ├── vpx_dsp_common.h │ │ │ ├── vpx_dsp_rtcd.c │ │ │ ├── vpx_dsp_rtcd_defs.pl │ │ │ └── vpx_filter.h │ │ ├── vpx_dsp_rtcd.h │ │ ├── vpx_mem │ │ │ ├── include │ │ │ │ └── vpx_mem_intrnl.h │ │ │ ├── vpx_mem.c │ │ │ └── vpx_mem.h │ │ ├── vpx_ports │ │ │ ├── arm.h │ │ │ ├── arm_cpudetect.c │ │ │ ├── asmdefs_mmi.h │ │ │ ├── bitops.h │ │ │ ├── compiler_attributes.h │ │ │ ├── emmintrin_compat.h │ │ │ ├── float_control_word.asm │ │ │ ├── loongarch.h │ │ │ ├── loongarch_cpudetect.c │ │ │ ├── mem.h │ │ │ ├── mem_ops.h │ │ │ ├── mem_ops_aligned.h │ │ │ ├── mips.h │ │ │ ├── mips_cpudetect.c │ │ │ ├── msvc.h │ │ │ ├── ppc.h │ │ │ ├── ppc_cpudetect.c │ │ │ ├── static_assert.h │ │ │ ├── system_state.h │ │ │ ├── vpx_once.h │ │ │ ├── vpx_timer.h │ │ │ ├── x86.h │ │ │ └── x86_abi_support.asm │ │ ├── vpx_scale │ │ │ ├── generic │ │ │ │ ├── gen_scalers.c │ │ │ │ ├── vpx_scale.c │ │ │ │ ├── yv12config.c │ │ │ │ └── yv12extend.c │ │ │ ├── mips │ │ │ │ └── dspr2 │ │ │ │ │ └── yv12extend_dspr2.c │ │ │ ├── vpx_scale.h │ │ │ ├── vpx_scale_rtcd.c │ │ │ ├── vpx_scale_rtcd.pl │ │ │ └── yv12config.h │ │ ├── vpx_scale_rtcd.h │ │ ├── vpx_util │ │ │ ├── endian_inl.h │ │ │ ├── loongson_intrinsics.h │ │ │ ├── vpx_atomics.h │ │ │ ├── vpx_debug_util.c │ │ │ ├── vpx_debug_util.h │ │ │ ├── vpx_thread.c │ │ │ ├── vpx_thread.h │ │ │ ├── vpx_timestamp.h │ │ │ ├── vpx_write_yuv_frame.c │ │ │ └── vpx_write_yuv_frame.h │ │ ├── vpx_version.h │ │ ├── y4minput.c │ │ └── y4minput.h │ ├── libyuv │ │ ├── basic_types.h │ │ ├── convert.cc │ │ ├── convert.h │ │ ├── convert_argb.cc │ │ ├── convert_argb.h │ │ ├── convert_from.cc │ │ ├── convert_from.h │ │ ├── convert_from_argb.cc │ │ ├── convert_from_argb.h │ │ ├── convert_jpeg.cc │ │ ├── convert_to_argb.cc │ │ ├── convert_to_i420.cc │ │ ├── cpu_id.cc │ │ ├── cpu_id.h │ │ ├── libyuv.vcxproj │ │ ├── libyuv.vcxproj.filters │ │ ├── macros_msa.h │ │ ├── mjpeg_decoder.cc │ │ ├── mjpeg_decoder.h │ │ ├── mjpeg_validate.cc │ │ ├── planar_functions.cc │ │ ├── planar_functions.h │ │ ├── rotate.cc │ │ ├── rotate.h │ │ ├── rotate_any.cc │ │ ├── rotate_argb.cc │ │ ├── rotate_argb.h │ │ ├── rotate_common.cc │ │ ├── rotate_gcc.cc │ │ ├── rotate_msa.cc │ │ ├── rotate_neon.cc │ │ ├── rotate_neon64.cc │ │ ├── rotate_row.h │ │ ├── rotate_win.cc │ │ ├── row.h │ │ ├── row_any.cc │ │ ├── row_common.cc │ │ ├── row_gcc.cc │ │ ├── row_msa.cc │ │ ├── row_neon.cc │ │ ├── row_neon64.cc │ │ ├── row_win.cc │ │ ├── scale.cc │ │ ├── scale.h │ │ ├── scale_any.cc │ │ ├── scale_argb.cc │ │ ├── scale_argb.h │ │ ├── scale_common.cc │ │ ├── scale_gcc.cc │ │ ├── scale_msa.cc │ │ ├── scale_neon.cc │ │ ├── scale_neon64.cc │ │ ├── scale_row.h │ │ ├── scale_win.cc │ │ ├── version.h │ │ ├── video_common.cc │ │ └── video_common.h │ └── nestegg │ │ ├── nestegg.c │ │ ├── nestegg.h │ │ ├── nestegg.vcxproj │ │ └── nestegg.vcxproj.filters ├── exe_edit.txt ├── hook_concourse │ ├── BitmapEffect.cpp │ ├── BitmapEffect.h │ ├── ComPtr.h │ ├── SurfaceDC.h │ ├── concourse.cpp │ ├── concourse.h │ ├── config.cpp │ ├── config.h │ ├── dllmain.cpp │ ├── hook_concourse.rc │ ├── hook_concourse.vcxproj │ ├── hook_concourse.vcxproj.filters │ ├── hook_function.h │ ├── hookexe.cpp │ ├── hookexe.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── webm_helpers.cpp │ └── webm_helpers.h ├── hook_concourse_net │ ├── hook_concourse_net.sln │ └── hook_concourse_net │ │ ├── Helpers.cs │ │ ├── Main.cs │ │ ├── NativeMethods.cs │ │ ├── ResItem.cs │ │ ├── ResItemDescription.cs │ │ ├── ResItemImage.cs │ │ ├── SurfaceDC.cs │ │ ├── XwaHooksConfig.cs │ │ └── hook_concourse_net.csproj ├── libvpx │ ├── ivfenc.c │ ├── ivfenc.h │ ├── libvpx.vcxproj │ ├── libvpx.vcxproj.filters │ ├── tools_common.c │ ├── tools_common.h │ ├── vp8 │ │ ├── common │ │ │ ├── alloccommon.c │ │ │ ├── alloccommon.h │ │ │ ├── blockd.c │ │ │ ├── blockd.h │ │ │ ├── coefupdateprobs.h │ │ │ ├── common.h │ │ │ ├── context.c │ │ │ ├── debugmodes.c │ │ │ ├── default_coef_probs.h │ │ │ ├── dequantize.c │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── entropymode.c │ │ │ ├── entropymode.h │ │ │ ├── entropymv.c │ │ │ ├── entropymv.h │ │ │ ├── extend.c │ │ │ ├── extend.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── findnearmv.c │ │ │ ├── findnearmv.h │ │ │ ├── generic │ │ │ │ └── systemdependent.c │ │ │ ├── header.h │ │ │ ├── idct_blk.c │ │ │ ├── idctllm.c │ │ │ ├── invtrans.h │ │ │ ├── loopfilter.h │ │ │ ├── loopfilter_filters.c │ │ │ ├── mbpitch.c │ │ │ ├── mfqe.c │ │ │ ├── modecont.c │ │ │ ├── modecont.h │ │ │ ├── mv.h │ │ │ ├── onyx.h │ │ │ ├── onyxc_int.h │ │ │ ├── onyxd.h │ │ │ ├── postproc.c │ │ │ ├── postproc.h │ │ │ ├── ppflags.h │ │ │ ├── quant_common.c │ │ │ ├── quant_common.h │ │ │ ├── reconinter.c │ │ │ ├── reconinter.h │ │ │ ├── reconintra.c │ │ │ ├── reconintra.h │ │ │ ├── reconintra4x4.c │ │ │ ├── reconintra4x4.h │ │ │ ├── rtcd.c │ │ │ ├── rtcd_defs.pl │ │ │ ├── setupintrarecon.c │ │ │ ├── setupintrarecon.h │ │ │ ├── swapyv12buffer.c │ │ │ ├── swapyv12buffer.h │ │ │ ├── systemdependent.h │ │ │ ├── threading.h │ │ │ ├── treecoder.c │ │ │ ├── treecoder.h │ │ │ ├── vp8_entropymodedata.h │ │ │ ├── vp8_loopfilter.c │ │ │ ├── vp8_skin_detection.c │ │ │ └── vp8_skin_detection.h │ │ ├── decoder │ │ │ ├── dboolhuff.c │ │ │ ├── dboolhuff.h │ │ │ ├── decodeframe.c │ │ │ ├── decodemv.c │ │ │ ├── decodemv.h │ │ │ ├── decoderthreading.h │ │ │ ├── detokenize.c │ │ │ ├── detokenize.h │ │ │ ├── ec_types.h │ │ │ ├── error_concealment.c │ │ │ ├── error_concealment.h │ │ │ ├── onyxd_if.c │ │ │ ├── onyxd_int.h │ │ │ └── treereader.h │ │ ├── encoder │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── block.h │ │ │ ├── boolhuff.c │ │ │ ├── boolhuff.h │ │ │ ├── copy_c.c │ │ │ ├── dct.c │ │ │ ├── dct_value_cost.h │ │ │ ├── dct_value_tokens.h │ │ │ ├── defaultcoefcounts.h │ │ │ ├── denoising.h │ │ │ ├── encodeframe.c │ │ │ ├── encodeframe.h │ │ │ ├── encodeintra.c │ │ │ ├── encodeintra.h │ │ │ ├── encodemb.c │ │ │ ├── encodemb.h │ │ │ ├── encodemv.c │ │ │ ├── encodemv.h │ │ │ ├── ethreading.c │ │ │ ├── ethreading.h │ │ │ ├── firstpass.c │ │ │ ├── firstpass.h │ │ │ ├── lookahead.c │ │ │ ├── lookahead.h │ │ │ ├── mcomp.c │ │ │ ├── mcomp.h │ │ │ ├── modecosts.c │ │ │ ├── modecosts.h │ │ │ ├── mr_dissim.c │ │ │ ├── mr_dissim.h │ │ │ ├── onyx_if.c │ │ │ ├── onyx_int.h │ │ │ ├── pickinter.c │ │ │ ├── pickinter.h │ │ │ ├── picklpf.c │ │ │ ├── picklpf.h │ │ │ ├── quantize.h │ │ │ ├── ratectrl.c │ │ │ ├── ratectrl.h │ │ │ ├── rdopt.c │ │ │ ├── rdopt.h │ │ │ ├── segmentation.c │ │ │ ├── segmentation.h │ │ │ ├── temporal_filter.c │ │ │ ├── temporal_filter.h │ │ │ ├── tokenize.c │ │ │ ├── tokenize.h │ │ │ ├── treewriter.c │ │ │ ├── treewriter.h │ │ │ └── vp8_quantize.c │ │ ├── vp8_cx_iface.c │ │ ├── vp8_dx_iface.c │ │ ├── vp8_ratectrl_rtc.cc │ │ └── vp8_ratectrl_rtc.h │ ├── vp8_rtcd.h │ ├── vp9 │ │ ├── common │ │ │ ├── vp9_alloccommon.c │ │ │ ├── vp9_alloccommon.h │ │ │ ├── vp9_blockd.c │ │ │ ├── vp9_blockd.h │ │ │ ├── vp9_common.h │ │ │ ├── vp9_common_data.c │ │ │ ├── vp9_common_data.h │ │ │ ├── vp9_debugmodes.c │ │ │ ├── vp9_entropy.c │ │ │ ├── vp9_entropy.h │ │ │ ├── vp9_entropymode.c │ │ │ ├── vp9_entropymode.h │ │ │ ├── vp9_entropymv.c │ │ │ ├── vp9_entropymv.h │ │ │ ├── vp9_enums.h │ │ │ ├── vp9_filter.c │ │ │ ├── vp9_filter.h │ │ │ ├── vp9_frame_buffers.c │ │ │ ├── vp9_frame_buffers.h │ │ │ ├── vp9_idct.c │ │ │ ├── vp9_idct.h │ │ │ ├── vp9_loopfilter.c │ │ │ ├── vp9_loopfilter.h │ │ │ ├── vp9_mfqe.c │ │ │ ├── vp9_mfqe.h │ │ │ ├── vp9_mv.h │ │ │ ├── vp9_mvref_common.c │ │ │ ├── vp9_mvref_common.h │ │ │ ├── vp9_onyxc_int.h │ │ │ ├── vp9_postproc.c │ │ │ ├── vp9_postproc.h │ │ │ ├── vp9_ppflags.h │ │ │ ├── vp9_pred_common.c │ │ │ ├── vp9_pred_common.h │ │ │ ├── vp9_quant_common.c │ │ │ ├── vp9_quant_common.h │ │ │ ├── vp9_reconinter.c │ │ │ ├── vp9_reconinter.h │ │ │ ├── vp9_reconintra.c │ │ │ ├── vp9_reconintra.h │ │ │ ├── vp9_rtcd.c │ │ │ ├── vp9_rtcd_defs.pl │ │ │ ├── vp9_scale.c │ │ │ ├── vp9_scale.h │ │ │ ├── vp9_scan.c │ │ │ ├── vp9_scan.h │ │ │ ├── vp9_seg_common.c │ │ │ ├── vp9_seg_common.h │ │ │ ├── vp9_thread_common.c │ │ │ ├── vp9_thread_common.h │ │ │ ├── vp9_tile_common.c │ │ │ └── vp9_tile_common.h │ │ ├── decoder │ │ │ ├── vp9_decodeframe.c │ │ │ ├── vp9_decodeframe.h │ │ │ ├── vp9_decodemv.c │ │ │ ├── vp9_decodemv.h │ │ │ ├── vp9_decoder.c │ │ │ ├── vp9_decoder.h │ │ │ ├── vp9_detokenize.c │ │ │ ├── vp9_detokenize.h │ │ │ ├── vp9_dsubexp.c │ │ │ ├── vp9_dsubexp.h │ │ │ ├── vp9_job_queue.c │ │ │ └── vp9_job_queue.h │ │ ├── encoder │ │ │ ├── vp9_alt_ref_aq.c │ │ │ ├── vp9_alt_ref_aq.h │ │ │ ├── vp9_aq_360.c │ │ │ ├── vp9_aq_360.h │ │ │ ├── vp9_aq_complexity.c │ │ │ ├── vp9_aq_complexity.h │ │ │ ├── vp9_aq_cyclicrefresh.c │ │ │ ├── vp9_aq_cyclicrefresh.h │ │ │ ├── vp9_aq_variance.c │ │ │ ├── vp9_aq_variance.h │ │ │ ├── vp9_bitstream.c │ │ │ ├── vp9_bitstream.h │ │ │ ├── vp9_block.h │ │ │ ├── vp9_blockiness.c │ │ │ ├── vp9_blockiness.h │ │ │ ├── vp9_context_tree.c │ │ │ ├── vp9_context_tree.h │ │ │ ├── vp9_cost.c │ │ │ ├── vp9_cost.h │ │ │ ├── vp9_dct.c │ │ │ ├── vp9_denoiser.h │ │ │ ├── vp9_encodeframe.c │ │ │ ├── vp9_encodeframe.h │ │ │ ├── vp9_encodemb.c │ │ │ ├── vp9_encodemb.h │ │ │ ├── vp9_encodemv.c │ │ │ ├── vp9_encodemv.h │ │ │ ├── vp9_encoder.c │ │ │ ├── vp9_encoder.h │ │ │ ├── vp9_ethread.c │ │ │ ├── vp9_ethread.h │ │ │ ├── vp9_ext_ratectrl.c │ │ │ ├── vp9_ext_ratectrl.h │ │ │ ├── vp9_extend.c │ │ │ ├── vp9_extend.h │ │ │ ├── vp9_firstpass.c │ │ │ ├── vp9_firstpass.h │ │ │ ├── vp9_frame_scale.c │ │ │ ├── vp9_job_queue.h │ │ │ ├── vp9_lookahead.c │ │ │ ├── vp9_lookahead.h │ │ │ ├── vp9_mbgraph.c │ │ │ ├── vp9_mbgraph.h │ │ │ ├── vp9_mcomp.c │ │ │ ├── vp9_mcomp.h │ │ │ ├── vp9_multi_thread.c │ │ │ ├── vp9_multi_thread.h │ │ │ ├── vp9_noise_estimate.c │ │ │ ├── vp9_noise_estimate.h │ │ │ ├── vp9_non_greedy_mv.c │ │ │ ├── vp9_non_greedy_mv.h │ │ │ ├── vp9_partition_models.h │ │ │ ├── vp9_picklpf.c │ │ │ ├── vp9_picklpf.h │ │ │ ├── vp9_pickmode.c │ │ │ ├── vp9_pickmode.h │ │ │ ├── vp9_quantize.c │ │ │ ├── vp9_quantize.h │ │ │ ├── vp9_ratectrl.c │ │ │ ├── vp9_ratectrl.h │ │ │ ├── vp9_rd.c │ │ │ ├── vp9_rd.h │ │ │ ├── vp9_rdopt.c │ │ │ ├── vp9_rdopt.h │ │ │ ├── vp9_resize.c │ │ │ ├── vp9_resize.h │ │ │ ├── vp9_segmentation.c │ │ │ ├── vp9_segmentation.h │ │ │ ├── vp9_skin_detection.c │ │ │ ├── vp9_skin_detection.h │ │ │ ├── vp9_speed_features.c │ │ │ ├── vp9_speed_features.h │ │ │ ├── vp9_subexp.c │ │ │ ├── vp9_subexp.h │ │ │ ├── vp9_svc_layercontext.c │ │ │ ├── vp9_svc_layercontext.h │ │ │ ├── vp9_temporal_filter.c │ │ │ ├── vp9_temporal_filter.h │ │ │ ├── vp9_tokenize.c │ │ │ ├── vp9_tokenize.h │ │ │ ├── vp9_treewriter.c │ │ │ └── vp9_treewriter.h │ │ ├── ratectrl_rtc.cc │ │ ├── ratectrl_rtc.h │ │ ├── simple_encode.cc │ │ ├── simple_encode.h │ │ ├── vp9_cx_iface.c │ │ ├── vp9_cx_iface.h │ │ ├── vp9_dx_iface.c │ │ ├── vp9_dx_iface.h │ │ ├── vp9_iface_common.c │ │ └── vp9_iface_common.h │ ├── vp9_rtcd.h │ ├── vpx │ │ ├── internal │ │ │ ├── vpx_codec_internal.h │ │ │ └── vpx_ratectrl_rtc.h │ │ ├── src │ │ │ ├── vpx_codec.c │ │ │ ├── vpx_decoder.c │ │ │ ├── vpx_encoder.c │ │ │ └── vpx_image.c │ │ ├── vp8.h │ │ ├── vp8cx.h │ │ ├── vp8dx.h │ │ ├── vpx_codec.h │ │ ├── vpx_decoder.h │ │ ├── vpx_encoder.h │ │ ├── vpx_ext_ratectrl.h │ │ ├── vpx_frame_buffer.h │ │ ├── vpx_image.h │ │ └── vpx_integer.h │ ├── vpx_config.asm │ ├── vpx_config.c │ ├── vpx_config.h │ ├── vpx_dsp │ │ ├── add_noise.c │ │ ├── avg.c │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bitreader_buffer.c │ │ ├── bitreader_buffer.h │ │ ├── bitwriter.c │ │ ├── bitwriter.h │ │ ├── bitwriter_buffer.c │ │ ├── bitwriter_buffer.h │ │ ├── deblock.c │ │ ├── fastssim.c │ │ ├── fwd_txfm.c │ │ ├── fwd_txfm.h │ │ ├── intrapred.c │ │ ├── inv_txfm.c │ │ ├── inv_txfm.h │ │ ├── loopfilter.c │ │ ├── postproc.h │ │ ├── prob.c │ │ ├── prob.h │ │ ├── psnr.c │ │ ├── psnr.h │ │ ├── psnrhvs.c │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── sad.c │ │ ├── skin_detection.c │ │ ├── skin_detection.h │ │ ├── ssim.c │ │ ├── ssim.h │ │ ├── subtract.c │ │ ├── sum_squares.c │ │ ├── txfm_common.h │ │ ├── variance.c │ │ ├── variance.h │ │ ├── vpx_convolve.c │ │ ├── vpx_convolve.h │ │ ├── vpx_dsp_common.h │ │ ├── vpx_dsp_rtcd.c │ │ ├── vpx_dsp_rtcd_defs.pl │ │ └── vpx_filter.h │ ├── vpx_dsp_rtcd.h │ ├── vpx_mem │ │ ├── include │ │ │ └── vpx_mem_intrnl.h │ │ ├── vpx_mem.c │ │ └── vpx_mem.h │ ├── vpx_ports │ │ ├── arm.h │ │ ├── arm_cpudetect.c │ │ ├── asmdefs_mmi.h │ │ ├── bitops.h │ │ ├── compiler_attributes.h │ │ ├── emmintrin_compat.h │ │ ├── float_control_word.asm │ │ ├── loongarch.h │ │ ├── loongarch_cpudetect.c │ │ ├── mem.h │ │ ├── mem_ops.h │ │ ├── mem_ops_aligned.h │ │ ├── mips.h │ │ ├── mips_cpudetect.c │ │ ├── msvc.h │ │ ├── ppc.h │ │ ├── ppc_cpudetect.c │ │ ├── static_assert.h │ │ ├── system_state.h │ │ ├── vpx_once.h │ │ ├── vpx_timer.h │ │ ├── x86.h │ │ └── x86_abi_support.asm │ ├── vpx_scale │ │ ├── generic │ │ │ ├── gen_scalers.c │ │ │ ├── vpx_scale.c │ │ │ ├── yv12config.c │ │ │ └── yv12extend.c │ │ ├── mips │ │ │ └── dspr2 │ │ │ │ └── yv12extend_dspr2.c │ │ ├── vpx_scale.h │ │ ├── vpx_scale_rtcd.c │ │ ├── vpx_scale_rtcd.pl │ │ └── yv12config.h │ ├── vpx_scale_rtcd.h │ ├── vpx_util │ │ ├── endian_inl.h │ │ ├── loongson_intrinsics.h │ │ ├── vpx_atomics.h │ │ ├── vpx_debug_util.c │ │ ├── vpx_debug_util.h │ │ ├── vpx_thread.c │ │ ├── vpx_thread.h │ │ ├── vpx_timestamp.h │ │ ├── vpx_write_yuv_frame.c │ │ └── vpx_write_yuv_frame.h │ ├── vpx_version.h │ ├── y4minput.c │ └── y4minput.h ├── libyuv │ ├── basic_types.h │ ├── convert.cc │ ├── convert.h │ ├── convert_argb.cc │ ├── convert_argb.h │ ├── convert_from.cc │ ├── convert_from.h │ ├── convert_from_argb.cc │ ├── convert_from_argb.h │ ├── convert_jpeg.cc │ ├── convert_to_argb.cc │ ├── convert_to_i420.cc │ ├── cpu_id.cc │ ├── cpu_id.h │ ├── libyuv.vcxproj │ ├── libyuv.vcxproj.filters │ ├── macros_msa.h │ ├── mjpeg_decoder.cc │ ├── mjpeg_decoder.h │ ├── mjpeg_validate.cc │ ├── planar_functions.cc │ ├── planar_functions.h │ ├── rotate.cc │ ├── rotate.h │ ├── rotate_any.cc │ ├── rotate_argb.cc │ ├── rotate_argb.h │ ├── rotate_common.cc │ ├── rotate_gcc.cc │ ├── rotate_msa.cc │ ├── rotate_neon.cc │ ├── rotate_neon64.cc │ ├── rotate_row.h │ ├── rotate_win.cc │ ├── row.h │ ├── row_any.cc │ ├── row_common.cc │ ├── row_gcc.cc │ ├── row_msa.cc │ ├── row_neon.cc │ ├── row_neon64.cc │ ├── row_win.cc │ ├── scale.cc │ ├── scale.h │ ├── scale_any.cc │ ├── scale_argb.cc │ ├── scale_argb.h │ ├── scale_common.cc │ ├── scale_gcc.cc │ ├── scale_msa.cc │ ├── scale_neon.cc │ ├── scale_neon64.cc │ ├── scale_row.h │ ├── scale_win.cc │ ├── version.h │ ├── video_common.cc │ └── video_common.h ├── nestegg │ ├── nestegg.c │ ├── nestegg.h │ ├── nestegg.vcxproj │ └── nestegg.vcxproj.filters ├── shaders │ ├── BitmapPixelShader.hlsl │ ├── MainPixelShader.hlsl │ ├── MainVertexShader.hlsl │ ├── d2d1effecthelpers.hlsli │ ├── shaders.vcxproj │ └── shaders.vcxproj.filters ├── xwa_hook_concourse.sln └── zip │ ├── ConcourseAnimations.txt │ ├── ConcourseBackgroundsWide.txt │ ├── ConcourseDoors.txt │ ├── CustomMoviesOnPointsList.txt │ ├── FamilyMedalsDescriptions.txt │ ├── JeremyAnsel.BcnSharp.dll │ ├── JeremyAnsel.BcnSharpLib32.dll │ ├── JeremyAnsel.BcnSharpLib64.dll │ ├── JeremyAnsel.ColorQuant.dll │ ├── JeremyAnsel.Xwa.Cbm.dll │ ├── JeremyAnsel.Xwa.Dat.dll │ ├── KalidorCrescentDescriptions.txt │ ├── KalidorCrescentPoints.txt │ ├── MedalDetailList.txt │ ├── MedalDetailListOrder.txt │ ├── MedalsDescriptions.txt │ ├── MedalsPositions.txt │ ├── PilotRatingCustomMovies.txt │ ├── PilotRatingPoints.txt │ ├── RankCustomMovies.txt │ ├── RankPoints.txt │ ├── System.Drawing.Common.dll │ ├── XwaConcoursePlayer.exe │ ├── concourse.txt │ ├── hook_concourse.cfg │ ├── hook_concourse.dll │ ├── hook_concourse_net.dll │ ├── readme.txt │ └── xwa_hook_concourse.zip ├── xwa_hook_countermeasures ├── exe_edit.txt ├── hook_countermeasures │ ├── countermeasures.cpp │ ├── countermeasures.h │ ├── hook_countermeasures.rc │ ├── hook_countermeasures.vcxproj │ ├── hook_countermeasures.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_countermeasures.sln └── zip │ ├── hook_countermeasures.dll │ ├── readme.txt │ └── xwa_hook_countermeasures.zip ├── xwa_hook_crafts_count ├── exe_edit.txt ├── hook_crafts_count │ ├── config.cpp │ ├── config.h │ ├── crafts.cpp │ ├── crafts.h │ ├── hook_crafts_count.rc │ ├── hook_crafts_count.vcxproj │ ├── hook_crafts_count.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_crafts_count.sln └── zip │ ├── hook_crafts_count.cfg │ ├── hook_crafts_count.dll │ ├── readme.txt │ └── xwa_hook_crafts_count.zip ├── xwa_hook_d3d ├── exe_edit.txt ├── hook_d3d │ ├── config.cpp │ ├── config.h │ ├── d3d.cpp │ ├── d3d.h │ ├── hook_d3d.rc │ ├── hook_d3d.vcxproj │ ├── hook_d3d.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_d3d.sln └── zip │ ├── hook_d3d.cfg │ ├── hook_d3d.dll │ ├── readme.txt │ └── xwa_hook_d3d.zip ├── xwa_hook_d3dinfos_textures ├── exe_edit.txt ├── hook_d3dinfos_textures │ ├── config.cpp │ ├── config.h │ ├── d3dinfos.cpp │ ├── d3dinfos.h │ ├── hook_d3dinfos_textures.rc │ ├── hook_d3dinfos_textures.vcxproj │ ├── hook_d3dinfos_textures.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_d3dinfos_textures.sln └── zip │ ├── hook_d3dinfos_textures.cfg │ ├── hook_d3dinfos_textures.dll │ ├── readme.txt │ └── xwa_hook_d3dinfos_textures.zip ├── xwa_hook_diag ├── exe_edit.txt ├── hook_diag │ ├── config.cpp │ ├── config.h │ ├── diag.cpp │ ├── diag.h │ ├── hook_diag.rc │ ├── hook_diag.vcxproj │ ├── hook_diag.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_diag.sln └── zip │ ├── hook_diag.cfg │ ├── hook_diag.dll │ ├── readme.txt │ └── xwa_hook_diag.zip ├── xwa_hook_dock ├── exe_edit.txt ├── hook_dock │ ├── config.cpp │ ├── config.h │ ├── dock.cpp │ ├── dock.h │ ├── hook_dock.rc │ ├── hook_dock.vcxproj │ ├── hook_dock.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_dock.sln └── zip │ ├── SpaceColony2Dock.txt │ ├── hook_dock.cfg │ ├── hook_dock.dll │ ├── readme.txt │ └── xwa_hook_dock.zip ├── xwa_hook_engine_sound ├── exe_edit.txt ├── hook_engine_sound │ ├── config.cpp │ ├── config.h │ ├── engine_sound.cpp │ ├── engine_sound.h │ ├── hook_engine_sound.rc │ ├── hook_engine_sound.vcxproj │ ├── hook_engine_sound.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ └── zip_file.hpp ├── sounds functions.txt ├── xwa_hook_engine_sound.sln └── zip │ ├── EmptySound.txt │ ├── EngineSound.txt │ ├── Examples │ ├── AssaultGunboatSound.txt │ ├── AssaultTransportSound.txt │ ├── AwingSound.txt │ ├── BwingSound.txt │ ├── CloakshapeFighterSound.txt │ ├── CombatUtilityVehicleSound.txt │ ├── CorellianTransport2Sound.txt │ ├── EscortShuttleSound.txt │ ├── EscortTransportSound.txt │ ├── FamilyTransportSound.txt │ ├── HeavyLifterSound.txt │ ├── IrdFighterSound.txt │ ├── MilleniumFalcon2Sound.txt │ ├── MissileBoatSound.txt │ ├── PiggybackSound.txt │ ├── PlanetaryFighterSound.txt │ ├── PreybirdFighterSound.txt │ ├── R41Sound.txt │ ├── RazorFighterSound.txt │ ├── ScoutCraftSound.txt │ ├── ShuttleSound.txt │ ├── SkiprayBlastBoatSound.txt │ ├── SlaveOneSound.txt │ ├── SlaveTwoSound.txt │ ├── StormtrooperTransportSound.txt │ ├── SupaFighterSound.txt │ ├── SystemPatrolCraftSound.txt │ ├── TieAdvancedSound.txt │ ├── TieBigGunSound.txt │ ├── TieBizarroSound.txt │ ├── TieBombSound.txt │ ├── TieBomberSound.txt │ ├── TieBoosterSound.txt │ ├── TieDefenderSound.txt │ ├── TieFighterSound.txt │ ├── TieInterceptorSound.txt │ ├── TieWarheadsSound.txt │ ├── ToscanFighterSound.txt │ ├── TugSound.txt │ ├── TwingSound.txt │ ├── XwingSound.txt │ ├── YwingSound.txt │ └── Z-95Sound.txt │ ├── Interdiction.txt │ ├── Sounds.txt │ ├── Wave │ ├── Sfx_CanopyOpening.lst │ ├── Sfx_CanopyOpening │ │ └── _setup.txt │ ├── Sfx_EngineSlowing.lst │ ├── Sfx_EngineSlowing │ │ └── _setup.txt │ ├── Sfx_EngineWash.lst │ ├── Sfx_EngineWash │ │ └── _setup.txt │ ├── Sfx_FlyBy.lst │ ├── Sfx_FlyBy │ │ └── _setup.txt │ ├── Sfx_HyperAbort.lst │ ├── Sfx_HyperAbort │ │ └── _setup.txt │ ├── Sfx_HyperEnd.lst │ ├── Sfx_HyperEnd │ │ └── _setup.txt │ ├── Sfx_HyperStart.lst │ ├── Sfx_HyperStart │ │ └── _setup.txt │ ├── Sfx_HyperZoom.lst │ ├── Sfx_HyperZoom │ │ └── _setup.txt │ ├── Sfx_Interior.lst │ ├── Sfx_Interior │ │ └── _setup.txt │ ├── Sfx_ShuttleBlastOff.lst │ ├── Sfx_ShuttleBlastOff │ │ └── _setup.txt │ ├── Sfx_ShuttleShutDown.lst │ ├── Sfx_ShuttleShutDown │ │ └── _setup.txt │ ├── Sfx_ShuttleTakeOff.lst │ ├── Sfx_ShuttleTakeOff │ │ └── _setup.txt │ ├── Sfx_Sounds.lst │ ├── Sfx_Sounds │ │ └── _setup.txt │ ├── Sfx_StarshipAmbient.lst │ ├── Sfx_StarshipAmbient │ │ └── _setup.txt │ ├── Sfx_TakeOff.lst │ ├── Sfx_TakeOff │ │ └── _setup.txt │ ├── Sfx_Weapon.lst │ ├── Sfx_Weapon │ │ └── _setup.txt │ ├── Sfx_WeaponExplosion.lst │ ├── Sfx_WeaponExplosion │ │ └── _setup.txt │ ├── Sfx_WeaponRange.lst │ └── Sfx_WeaponRange │ │ └── _setup.txt │ ├── hook_engine_sound.cfg │ ├── hook_engine_sound.dll │ ├── readme.txt │ └── xwa_hook_engine_sound.zip ├── xwa_hook_exterior ├── exe_edit.txt ├── hook_exterior │ ├── config.cpp │ ├── config.h │ ├── exterior.cpp │ ├── exterior.h │ ├── hook_exterior.rc │ ├── hook_exterior.vcxproj │ ├── hook_exterior.vcxproj.filters │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_exterior.sln └── zip │ ├── VictoryStarDestroyer2Exterior.txt │ ├── hook_exterior.dll │ ├── readme.txt │ └── xwa_hook_exterior.zip ├── xwa_hook_gimbal_lock ├── exe_edit.txt ├── hook_gimbal_lock │ ├── config.cpp │ ├── config.h │ ├── gimbal_lock.cpp │ ├── gimbal_lock.h │ ├── hook_function.h │ ├── hook_gimbal_lock.rc │ ├── hook_gimbal_lock.vcxproj │ ├── hook_gimbal_lock.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_gimbal_lock.sln └── zip │ ├── hook_gimbal_lock.cfg │ ├── hook_gimbal_lock.dll │ ├── readme.txt │ └── xwa_hook_gimbal_lock.zip ├── xwa_hook_hangars ├── exe_edit.txt ├── hook_hangars │ ├── config.cpp │ ├── config.h │ ├── hangar.cpp │ ├── hangar.h │ ├── hook_function.h │ ├── hook_hangars.rc │ ├── hook_hangars.vcxproj │ ├── hook_hangars.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── notes.txt ├── xwa_hook_hangars.sln └── zip │ ├── BWingSize.txt │ ├── CraftSelectionCrafts.txt │ ├── CraftSelectionFighters.txt │ ├── CraftSelectionTransports.txt │ ├── FamHangarCamera.txt │ ├── FamHangarMap.txt │ ├── HangarCamera.txt │ ├── HangarMap.txt │ ├── HangarObjects.txt │ ├── PlayerCamera.txt │ ├── Wave │ ├── Sfx_HangarAmbient.lst │ └── Sfx_HangarAmbient │ │ └── _setup.txt │ ├── hook_hangars.cfg │ ├── hook_hangars.dll │ ├── readme.txt │ └── xwa_hook_hangars.zip ├── xwa_hook_hull_icon ├── exe_edit.txt ├── hook_hull_icon │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_hull_icon.rc │ ├── hook_hull_icon.vcxproj │ ├── hook_hull_icon.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── hull_icon.cpp │ ├── hull_icon.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_hull_icon.sln └── zip │ ├── HullIcon.txt │ ├── HullIconList.txt │ ├── MapIconList.txt │ ├── Objects.txt │ ├── hook_hull_icon.cfg │ ├── hook_hull_icon.dll │ ├── readme.txt │ └── xwa_hook_hull_icon.zip ├── xwa_hook_hyperspace ├── exe_edit.txt ├── hook_hyperspace │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_hyperspace.rc │ ├── hook_hyperspace.vcxproj │ ├── hook_hyperspace.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── hyperspace.cpp │ ├── hyperspace.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_hyperspace.sln └── zip │ ├── ImperialStarDestroyerHyperspace.txt │ ├── Wave │ ├── Sfx_EnterHyperspace.lst │ ├── Sfx_EnterHyperspace │ │ └── _setup.txt │ ├── Sfx_ExitHyperspace.lst │ └── Sfx_ExitHyperspace │ │ └── _setup.txt │ ├── hook_hyperspace.cfg │ ├── hook_hyperspace.dll │ ├── readme.txt │ └── xwa_hook_hyperspace.zip ├── xwa_hook_interdictor ├── exe_edit.txt ├── hook_interdictor │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_interdictor.rc │ ├── hook_interdictor.vcxproj │ ├── hook_interdictor.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── interdictor.cpp │ ├── interdictor.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_interdictor.sln └── zip │ ├── Interdictor2Interdictor.txt │ ├── ModStrikeCruiserInterdictor.txt │ ├── hook_interdictor.dll │ ├── readme.txt │ └── xwa_hook_interdictor.zip ├── xwa_hook_jamming ├── exe_edit.txt ├── hangar_jamming.txt ├── hook_jamming │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_jamming.rc │ ├── hook_jamming.vcxproj │ ├── hook_jamming.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── jamming.cpp │ ├── jamming.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_jamming.sln └── zip │ ├── FactoryJamming.txt │ ├── ImpResearchCenterJamming.txt │ ├── ImperialStarDestroyer2Jamming.txt │ ├── Interdictor2Jamming.txt │ ├── RepairYardJamming.txt │ ├── SuperStarDestroyerJamming.txt │ ├── VictoryStarDestroyer2Jamming.txt │ ├── hook_jamming.cfg │ ├── hook_jamming.dll │ ├── readme.txt │ └── xwa_hook_jamming.zip ├── xwa_hook_joystick_ff ├── XwaJoystickConfig │ ├── XwaJoystickConfig.sln │ └── XwaJoystickConfig │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── ControllerNameConverter.cs │ │ ├── DictionaryKeyConverter.cs │ │ ├── Icon.ico │ │ ├── JoyCaps.cs │ │ ├── JoyDriverCaps.cs │ │ ├── JoyInfoEx.cs │ │ ├── JoyInfoExOptions.cs │ │ ├── JoystickConfigAxis.cs │ │ ├── JoystickConfigButton.cs │ │ ├── JoystickController.cs │ │ ├── JoystickKeys.cs │ │ ├── JoystickKeysResources.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── NativeMethods.cs │ │ ├── XwaHooksConfig.cs │ │ └── XwaJoystickConfig.csproj ├── exe_edit.txt ├── hook_joystick_ff │ ├── SharedMem.cpp │ ├── SharedMem.h │ ├── SharedMemTemplate.h │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_joystick_ff.rc │ ├── hook_joystick_ff.vcxproj │ ├── hook_joystick_ff.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── joystick.cpp │ ├── joystick.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_joystick_ff.sln └── zip │ ├── JoystickConfig.txt │ ├── XwaJoystickConfig.exe │ ├── XwaJoystickConfig.exe.config │ ├── hook_joystick_ff.dll │ ├── readme.txt │ └── xwa_hook_joystick_ff.zip ├── xwa_hook_lightmaps ├── exe_edit.txt ├── hook_lightmaps │ ├── hook_function.h │ ├── hook_lightmaps.rc │ ├── hook_lightmaps.vcxproj │ ├── hook_lightmaps.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── lightmaps.cpp │ ├── lightmaps.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_lightmaps.sln └── zip │ ├── hook_lightmaps.dll │ ├── readme.txt │ └── xwa_hook_lightmaps.zip ├── xwa_hook_main ├── dinput │ ├── common.h │ ├── config.cpp │ ├── config.h │ ├── dinput.cpp │ ├── dinput.def │ ├── dinput.rc │ ├── dinput.vcxproj │ ├── dinput.vcxproj.filters │ ├── dllmain.cpp │ ├── hook.cpp │ ├── hook.h │ ├── hook_function.h │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── exe_edit.txt ├── xwa_hook_main.sln └── zip │ ├── dinput.cfg │ ├── dinput.dll │ ├── readme.txt │ └── xwa_hook_main.zip ├── xwa_hook_main_no_dinput ├── exe_edit.txt ├── hooks_main │ ├── config.cpp │ ├── config.h │ ├── dllmain.cpp │ ├── hook.cpp │ ├── hook.h │ ├── hook_function.h │ ├── hookmain.cpp │ ├── hooks.h │ ├── hooks_main.rc │ ├── hooks_main.vcxproj │ ├── hooks_main.vcxproj.filters │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_main_no_dinput.sln └── zip │ ├── XwaExePatcher │ ├── JeremyAnsel.Xwa.ExePatcher.dll │ ├── XwaExePatcherWindow.exe │ ├── patcher.xml │ └── readme.txt │ ├── dinput.cfg │ ├── hooks_main.dll │ ├── readme.txt │ └── xwa_hook_main_no_dinput.zip ├── xwa_hook_mission_objects ├── exe_edit.txt ├── exe_edit_execrafts.txt ├── exe_edit_profile.txt ├── exe_edit_turretindex.txt ├── exe_edit_turrets.txt ├── hook_mission_objects │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_mission_objects.rc │ ├── hook_mission_objects.vcxproj │ ├── hook_mission_objects.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── mission.cpp │ ├── mission.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_mission_objects.sln ├── xwa_turret_warhead.txt └── zip │ ├── CorellianTransport2CockpitPov.txt │ ├── CorellianTransport2CockpitPov_Default.txt │ ├── EscortShuttleTurrets.txt │ ├── FamilyTransportTurrets.txt │ ├── ModelObjectProfiles.txt │ ├── Objects.txt │ ├── hook_mission_objects.cfg │ ├── hook_mission_objects.dll │ ├── readme.txt │ └── xwa_hook_mission_objects.zip ├── xwa_hook_mission_tie ├── exe_edit.txt ├── hook_mission_tie │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_mission_tie.rc │ ├── hook_mission_tie.vcxproj │ ├── hook_mission_tie.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── tie.cpp │ └── tie.h ├── xwa_hook_mission_tie.sln └── zip │ ├── StatsProfiles.txt │ ├── XWing.ini │ ├── hook_mission_tie.cfg │ ├── hook_mission_tie.dll │ ├── mission.txt │ ├── readme.txt │ └── xwa_hook_mission_tie.zip ├── xwa_hook_music ├── exe_edit.txt ├── hook_music │ ├── ComPtr.h │ ├── hook_function.h │ ├── hook_music.rc │ ├── hook_music.vcxproj │ ├── hook_music.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── music.cpp │ ├── music.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_music.sln └── zip │ ├── hook_music.dll │ ├── readme.txt │ ├── xaudio2_9redist.dll │ └── xwa_hook_music.zip ├── xwa_hook_normals ├── exe_edit.txt ├── exe_functions.txt ├── hook_normals │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_normals.rc │ ├── hook_normals.vcxproj │ ├── hook_normals.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── normals.cpp │ ├── normals.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── vert_code.txt ├── xwa_hook_normals.sln └── zip │ ├── hook_normals.cfg │ ├── hook_normals.dll │ ├── readme.txt │ └── xwa_hook_normals.zip ├── xwa_hook_opt_limit ├── exe_edit.txt ├── exe_edit_engines.txt ├── exe_edit_meshes.txt ├── exe_edit_multi.txt ├── exe_edit_weaponracks.txt ├── hook_opt_limit │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_opt_limit.rc │ ├── hook_opt_limit.vcxproj │ ├── hook_opt_limit.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── opt_limit.cpp │ ├── opt_limit.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_opt_limit.sln └── zip │ ├── CorvetteSubcomponentsStrength.txt │ ├── XWingEngineGlows.txt │ ├── hook_opt_limit.cfg │ ├── hook_opt_limit.dll │ ├── readme.txt │ └── xwa_hook_opt_limit.zip ├── xwa_hook_patcher ├── hook_patcher │ ├── ExePatcher.cs │ ├── HookFunction.cs │ ├── HookMain.cs │ └── hook_patcher.csproj ├── xwa_hook_patcher.sln └── zip │ ├── JeremyAnsel.Xwa.ExePatcher.dll │ ├── JeremyAnsel.Xwa.HooksConfig.dll │ ├── hook_patcher.dll │ ├── hook_patcher.txt │ ├── hook_patcher.xml │ ├── readme.txt │ └── xwa_hook_patcher.zip ├── xwa_hook_pilot ├── exe_edit.txt ├── hook_pilot │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_pilot.rc │ ├── hook_pilot.vcxproj │ ├── hook_pilot.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── pilot.cpp │ ├── pilot.h │ ├── resource.h │ └── targetver.h ├── xwa_hook_pilot.sln └── zip │ ├── AWingPilot.txt │ ├── AWingPilotCockpit.txt │ ├── CorellianTransport2Pilot.txt │ ├── FamilyTransportPilot.txt │ ├── HangarDroid2Pilot.txt │ ├── HangarDroidPilot.txt │ ├── MilleniumFalcon2Pilot.txt │ ├── XWingPilot.txt │ ├── YWingPilot.txt │ ├── hook_pilot.dll │ ├── readme.txt │ └── xwa_hook_pilot.zip ├── xwa_hook_res1200 ├── exe_edit.txt ├── hook_res1200 │ ├── hook_function.h │ ├── hook_res1200.rc │ ├── hook_res1200.vcxproj │ ├── hook_res1200.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── res1200.cpp │ ├── res1200.h │ ├── resource.h │ └── targetver.h ├── xwa_hook_res1200.sln └── zip │ ├── hook_res1200.dll │ ├── readme.txt │ └── xwa_hook_res1200.zip ├── xwa_hook_resolution ├── exe_edit.txt ├── hook_resolution │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_resolution.rc │ ├── hook_resolution.vcxproj │ ├── hook_resolution.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resolution.cpp │ ├── resolution.h │ ├── resource.h │ └── targetver.h ├── xwa_hook_resolution.sln └── zip │ ├── hook_resolution.cfg │ ├── hook_resolution.dll │ ├── readme.txt │ └── xwa_hook_resolution.zip ├── xwa_hook_reticle ├── exe_edit.txt ├── hook_reticle │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_reticle.rc │ ├── hook_reticle.vcxproj │ ├── hook_reticle.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── reticle.cpp │ ├── reticle.h │ └── targetver.h ├── xwa_hook_reticle.sln └── zip │ ├── XWingReticle.txt │ ├── hook_reticle.dll │ ├── readme.txt │ └── xwa_hook_reticle.zip ├── xwa_hook_sfoils ├── exe_edit.txt ├── hook_sfoils │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_sfoils.rc │ ├── hook_sfoils.vcxproj │ ├── hook_sfoils.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── sfoils.cpp │ ├── sfoils.h │ ├── targetver.h │ ├── translate.cpp │ └── translate.h ├── xwa_hook_sfoils.sln └── zip │ ├── BWingSFoils.txt │ ├── ShuttleSFoils.txt │ ├── Wave │ ├── Sfx_SFoil.lst │ └── Sfx_SFoil │ │ └── _setup.txt │ ├── XWingSFoils.txt │ ├── hook_sfoils.cfg │ ├── hook_sfoils.dll │ ├── readme.txt │ └── xwa_hook_sfoils.zip ├── xwa_hook_shield ├── exe_edit.txt ├── hook_shield │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_shield.rc │ ├── hook_shield.vcxproj │ ├── hook_shield.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── shield.cpp │ ├── shield.h │ └── targetver.h ├── xwa_hook_shield.sln └── zip │ ├── Corvette2Shield.txt │ ├── Frigate2Shield.txt │ ├── ImperialStarDestroyer2Shield.txt │ ├── Interdictor2Shield.txt │ ├── SuperStarDestroyerShield.txt │ ├── VictoryStarDestroyer2Shield.txt │ ├── XWingShield.txt │ ├── hook_shield.cfg │ ├── hook_shield.dll │ ├── mission_Shield.txt │ ├── readme.txt │ └── xwa_hook_shield.zip ├── xwa_hook_slam ├── exe_edit.txt ├── hook_slam │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_slam.rc │ ├── hook_slam.vcxproj │ ├── hook_slam.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── slam.cpp │ ├── slam.h │ └── targetver.h ├── xwa_hook_slam.sln └── zip │ ├── MissileBoatSlam.txt │ ├── WAVE │ ├── overdrive.lst │ └── overdrive │ │ ├── POWERDN.WAV │ │ └── POWERUP.WAV │ ├── hook_slam.cfg │ ├── hook_slam.dll │ ├── readme.txt │ └── xwa_hook_slam.zip ├── xwa_hook_sounds_count ├── exe_edit.txt ├── hook_sounds_count │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_sounds_count.rc │ ├── hook_sounds_count.vcxproj │ ├── hook_sounds_count.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── sounds.cpp │ ├── sounds.h │ └── targetver.h ├── xwa_hook_sounds_count.sln └── zip │ ├── hook_sounds_count.dll │ ├── readme.txt │ └── xwa_hook_sounds_count.zip ├── xwa_hook_targetboxtoggle ├── exe_edit.txt ├── hook_targetboxtoggle │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_targetboxtoggle.rc │ ├── hook_targetboxtoggle.vcxproj │ ├── hook_targetboxtoggle.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetboxtoggle.cpp │ ├── targetboxtoggle.h │ └── targetver.h ├── xwa_hook_targetboxtoggle.sln └── zip │ ├── hook_targetboxtoggle.cfg │ ├── hook_targetboxtoggle.dll │ ├── readme.txt │ └── xwa_hook_targetboxtoggle.zip ├── xwa_hook_textures_tag ├── exe_edit.txt ├── hook_textures_tag │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_textures_tag.rc │ ├── hook_textures_tag.vcxproj │ ├── hook_textures_tag.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── textures.cpp │ └── textures.h ├── xwa_hook_textures_tag.sln └── zip │ ├── hook_textures_tag.cfg │ ├── hook_textures_tag.dll │ ├── readme.txt │ └── xwa_hook_textures_tag.zip ├── xwa_hook_time ├── exe_edit.txt ├── hook_time │ ├── config.cpp │ ├── config.h │ ├── get_time.cpp │ ├── get_time.h │ ├── hook_function.h │ ├── hook_time.rc │ ├── hook_time.vcxproj │ ├── hook_time.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── xwa_hook_time.sln └── zip │ ├── hook_time.cfg │ ├── hook_time.dll │ ├── readme.txt │ └── xwa_hook_time.zip ├── xwa_hook_tourmultiplayer ├── README_Hook_TourMultiplayer.txt ├── exe_edit.txt ├── hook_tourmultiplayer │ ├── XwaEnums.h │ ├── XwaFramework.h │ ├── XwaStructs.h │ ├── XwaTypes.h │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_tourmultiplayer.rc │ ├── hook_tourmultiplayer.vcxproj │ ├── hook_tourmultiplayer.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── multiplayer.cpp │ ├── multiplayer.h │ ├── packages.config │ ├── resource.h │ └── targetver.h ├── patch_memory.txt ├── xwa_hook_tourmultiplayer.sln └── zip │ ├── hook_tourmultiplayer.cfg │ ├── hook_tourmultiplayer.dll │ ├── readme.txt │ └── xwa_hook_tourmultiplayer.zip ├── xwa_hook_userdata ├── exe_edit.txt ├── hook_userdata │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_userdata.rc │ ├── hook_userdata.vcxproj │ ├── hook_userdata.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── userdata.cpp │ └── userdata.h ├── xwa_hook_userdata.sln └── zip │ ├── hook_userdata.cfg │ ├── hook_userdata.dll │ ├── modname.txt │ ├── readme.txt │ └── xwa_hook_userdata.zip ├── xwa_hook_weapon_color ├── exe_edit.txt ├── hook_weapon_color │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_weapon_color.rc │ ├── hook_weapon_color.vcxproj │ ├── hook_weapon_color.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── weapon.cpp │ └── weapon.h ├── xwa_hook_weapon_color.sln └── zip │ ├── RESDATA │ └── ANIMATIONS.DAT │ ├── XWingWeaponColor.txt │ ├── hook_weapon_color.cfg │ ├── hook_weapon_color.dll │ ├── readme.txt │ └── xwa_hook_weapon_color.zip ├── xwa_hook_weapon_lock ├── exe_edit.txt ├── hook_weapon_lock │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_weapon_lock.rc │ ├── hook_weapon_lock.vcxproj │ ├── hook_weapon_lock.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── weapon.cpp │ └── weapon.h ├── xwa_hook_weapon_lock.sln └── zip │ ├── hook_weapon_lock.dll │ ├── readme.txt │ └── xwa_hook_weapon_lock.zip ├── xwa_hook_weapon_rate ├── desc.txt ├── exe_edit.txt ├── hook_weapon_rate │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_weapon_rate.rc │ ├── hook_weapon_rate.vcxproj │ ├── hook_weapon_rate.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── weapon.cpp │ └── weapon.h ├── xwa_hook_weapon_rate.sln └── zip │ ├── Corvette2WeaponRate.txt │ ├── TieBomberWeaponRate.txt │ ├── TieFighterWeaponRate.txt │ ├── WeaponHardpointTypes.txt │ ├── hook_weapon_rate.cfg │ ├── hook_weapon_rate.dll │ ├── readme.txt │ └── xwa_hook_weapon_rate.zip ├── xwa_hook_weapon_type ├── exe_edit.txt ├── hook_weapon_type │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_weapon_type.rc │ ├── hook_weapon_type.vcxproj │ ├── hook_weapon_type.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── weapon.cpp │ └── weapon.h ├── xwa_hook_weapon_type.sln └── zip │ ├── hook_weapon_type.dll │ ├── readme.txt │ └── xwa_hook_weapon_type.zip ├── xwa_hook_windowed ├── exe_edit.txt ├── hook_windowed │ ├── config.cpp │ ├── config.h │ ├── hook_function.h │ ├── hook_windowed.rc │ ├── hook_windowed.vcxproj │ ├── hook_windowed.vcxproj.filters │ ├── hookmain.cpp │ ├── hooks.h │ ├── packages.config │ ├── resource.h │ ├── targetver.h │ ├── windowed.cpp │ └── windowed.h ├── xwa_hook_windowed.sln └── zip │ ├── hook_windowed.cfg │ ├── hook_windowed.dll │ ├── readme.txt │ └── xwa_hook_windowed.zip └── xwa_hook_wingmen_voices ├── exe_edit.txt ├── hook_wingmen_voices ├── hook_function.h ├── hook_wingmen_voices.rc ├── hook_wingmen_voices.vcxproj ├── hook_wingmen_voices.vcxproj.filters ├── hookmain.cpp ├── hooks.h ├── packages.config ├── resource.h ├── targetver.h ├── wingmen_voices.cpp └── wingmen_voices.h ├── xwa_hook_wingmen_voices.sln └── zip ├── hook_wingmen_voices.dll ├── readme.txt └── xwa_hook_wingmen_voices.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /DInputLogger/DInputLogger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger.sln -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DInputLogger.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DInputLogger.rc -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DInputLogger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DInputLogger.vcxproj -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DirectInputA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DirectInputA.cpp -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DirectInputA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DirectInputA.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DirectInputDeviceA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DirectInputDeviceA.cpp -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/DirectInputDeviceA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/DirectInputDeviceA.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/common.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/dinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/dinput.cpp -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/dinput.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/dinput.def -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/logger.cpp -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/logger.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/resource.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/targetver.h -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/utils.cpp -------------------------------------------------------------------------------- /DInputLogger/DInputLogger/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/DInputLogger/utils.h -------------------------------------------------------------------------------- /DInputLogger/zip/dinput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/DInputLogger/zip/dinput.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Xwa_Hook_HelloWorld_Cpp/Hook_HelloWorld/HelloWorld.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int HelloWorldHook(int* params); 4 | -------------------------------------------------------------------------------- /Samples/Xwa_Hook_HelloWorld_Cpp/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/Samples/Xwa_Hook_HelloWorld_Cpp/exe_edit.txt -------------------------------------------------------------------------------- /Samples/Xwa_Hook_HelloWorld_Cpp/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/Samples/Xwa_Hook_HelloWorld_Cpp/zip/readme.txt -------------------------------------------------------------------------------- /Samples/Xwa_Hook_HelloWorld_Cs/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/Samples/Xwa_Hook_HelloWorld_Cs/exe_edit.txt -------------------------------------------------------------------------------- /Samples/Xwa_Hook_HelloWorld_Cs/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/Samples/Xwa_Hook_HelloWorld_Cs/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_32bpp/Xwa32bppPlayer/Xwa32bppPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/Xwa32bppPlayer/Xwa32bppPlayer.sln -------------------------------------------------------------------------------- /xwa_hook_32bpp/Xwa32bppPlayer/Xwa32bppPlayer/Xwa32bppPlayer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /xwa_hook_32bpp/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/32bpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/32bpp.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/32bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/32bpp.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/SharedMemory.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/SharedMemory.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/config.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/config.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/dllmain.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hook_32bpp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hook_32bpp.rc -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hook_32bpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hook_32bpp.vcxproj -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hookexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hookexe.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hookexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hookexe.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/hooks.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/packages.config -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/resource.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp/targetver.h -------------------------------------------------------------------------------- /xwa_hook_32bpp/hook_32bpp_net/hook_32bpp_net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/hook_32bpp_net/hook_32bpp_net.sln -------------------------------------------------------------------------------- /xwa_hook_32bpp/xwa_hook_32bpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/xwa_hook_32bpp.sln -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/JeremyAnsel.ColorQuant.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/JeremyAnsel.ColorQuant.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/JeremyAnsel.Xwa.Opt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/JeremyAnsel.Xwa.Opt.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/Skins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/Skins.txt -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/System.Drawing.Common.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/Xwa32bppPlayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/Xwa32bppPlayer.exe -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/Xwa32bppPlayerNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/Xwa32bppPlayerNet.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/hook_32bpp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/hook_32bpp.cfg -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/hook_32bpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/hook_32bpp.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/hook_32bpp_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/hook_32bpp_net.dll -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_32bpp/zip/xwa_hook_32bpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_32bpp/zip/xwa_hook_32bpp.zip -------------------------------------------------------------------------------- /xwa_hook_backdrops/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/backdrops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/backdrops.cpp -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/backdrops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/backdrops.h -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/config.cpp -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/config.h -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/hooks.h -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/resource.h -------------------------------------------------------------------------------- /xwa_hook_backdrops/hook_backdrops/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/hook_backdrops/targetver.h -------------------------------------------------------------------------------- /xwa_hook_backdrops/xwa_hook_backdrops.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/xwa_hook_backdrops.sln -------------------------------------------------------------------------------- /xwa_hook_backdrops/zip/BackdropScales.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/zip/BackdropScales.txt -------------------------------------------------------------------------------- /xwa_hook_backdrops/zip/hook_backdrops.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/zip/hook_backdrops.dll -------------------------------------------------------------------------------- /xwa_hook_backdrops/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_backdrops/zip/xwa_hook_backdrops.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_backdrops/zip/xwa_hook_backdrops.zip -------------------------------------------------------------------------------- /xwa_hook_concourse/XwaConcoursePlayer/XwaConcoursePlayer/XwaConcoursePlayer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /xwa_hook_concourse/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/BitmapEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/BitmapEffect.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/ComPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/ComPtr.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/SurfaceDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/SurfaceDC.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/concourse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/concourse.cpp -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/concourse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/concourse.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/config.cpp -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/config.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/dllmain.cpp -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/hookexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/hookexe.cpp -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/hookexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/hookexe.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/hooks.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/resource.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/targetver.h -------------------------------------------------------------------------------- /xwa_hook_concourse/hook_concourse/webm_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/hook_concourse/webm_helpers.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/ivfenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/ivfenc.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/ivfenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/ivfenc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/libvpx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/libvpx.vcxproj -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/libvpx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/libvpx.vcxproj.filters -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/tools_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/tools_common.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/tools_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/tools_common.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/blockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/blockd.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/blockd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/blockd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/common.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/context.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/entropy.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/entropy.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/entropymv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/entropymv.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/entropymv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/entropymv.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/extend.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/extend.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/filter.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/filter.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/header.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/idct_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/idct_blk.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/idctllm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/idctllm.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/invtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/invtrans.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/mbpitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/mbpitch.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/mfqe.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/modecont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/modecont.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/modecont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/modecont.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/mv.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/onyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/onyx.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/onyxc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/onyxc_int.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/onyxd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/onyxd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/postproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/postproc.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/postproc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/ppflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/ppflags.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/rtcd.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/threading.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/treecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/treecoder.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/common/treecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/common/treecoder.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/decoder/decodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/decoder/decodemv.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/decoder/decodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/decoder/decodemv.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/decoder/ec_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/decoder/ec_types.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/decoder/onyxd_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/decoder/onyxd_if.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/block.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/boolhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/boolhuff.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/boolhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/boolhuff.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/copy_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/copy_c.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/dct.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/encodemb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/encodemb.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/encodemb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/encodemb.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/encodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/encodemv.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/encodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/encodemv.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/mcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/mcomp.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/mcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/mcomp.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/onyx_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/onyx_if.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/onyx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/onyx_int.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/picklpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/picklpf.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/picklpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/picklpf.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/quantize.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/ratectrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/ratectrl.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/ratectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/ratectrl.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/rdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/rdopt.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/rdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/rdopt.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/tokenize.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/encoder/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/encoder/tokenize.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/vp8_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/vp8_cx_iface.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/vp8_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/vp8_dx_iface.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8/vp8_ratectrl_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8/vp8_ratectrl_rtc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp8_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp8_rtcd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/common/vp9_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/common/vp9_enums.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/common/vp9_idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/common/vp9_idct.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/common/vp9_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/common/vp9_idct.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/common/vp9_mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/common/vp9_mfqe.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/common/vp9_mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/common/vp9_mv.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/ratectrl_rtc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/ratectrl_rtc.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/ratectrl_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/ratectrl_rtc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/simple_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/simple_encode.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/vp9_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/vp9_cx_iface.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/vp9_cx_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/vp9_cx_iface.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/vp9_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/vp9_dx_iface.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9/vp9_dx_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9/vp9_dx_iface.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vp9_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vp9_rtcd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/src/vpx_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/src/vpx_codec.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/src/vpx_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/src/vpx_image.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vp8.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vp8cx.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vp8dx.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vpx_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vpx_codec.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vpx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vpx_decoder.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vpx_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vpx_encoder.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vpx_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vpx_image.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx/vpx_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx/vpx_integer.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_config.asm -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_config.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_config.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/add_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/add_noise.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/avg.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/bitreader.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/bitreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/bitreader.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/bitwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/bitwriter.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/bitwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/bitwriter.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/deblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/deblock.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/fastssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/fastssim.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/fwd_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/fwd_txfm.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/fwd_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/fwd_txfm.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/intrapred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/intrapred.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/inv_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/inv_txfm.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/inv_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/inv_txfm.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/postproc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/prob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/prob.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/prob.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/psnr.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/psnr.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/psnrhvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/psnrhvs.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/quantize.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/quantize.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/sad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/sad.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/ssim.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/ssim.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/subtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/subtract.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/variance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/variance.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp/variance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp/variance.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_dsp_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_dsp_rtcd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_mem/vpx_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_mem/vpx_mem.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_mem/vpx_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_mem/vpx_mem.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/arm.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/bitops.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/mem.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/mem_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/mem_ops.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/mips.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/msvc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/ppc.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_ports/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_ports/x86.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_scale_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_scale_rtcd.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/vpx_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/vpx_version.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/y4minput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/y4minput.c -------------------------------------------------------------------------------- /xwa_hook_concourse/libvpx/y4minput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libvpx/y4minput.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/basic_types.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_argb.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_argb.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_from.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_from.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_from.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_from_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_from_argb.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_jpeg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_jpeg.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_to_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_to_argb.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/convert_to_i420.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/convert_to_i420.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/cpu_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/cpu_id.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/cpu_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/cpu_id.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/libyuv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/libyuv.vcxproj -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/macros_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/macros_msa.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/mjpeg_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/mjpeg_decoder.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/mjpeg_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/mjpeg_decoder.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/mjpeg_validate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/mjpeg_validate.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/planar_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/planar_functions.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/planar_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/planar_functions.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_any.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_argb.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_argb.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_common.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_gcc.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_msa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_msa.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_neon.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_neon64.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_row.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/rotate_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/rotate_win.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_any.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_common.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_gcc.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_msa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_msa.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_neon.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_neon64.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/row_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/row_win.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_any.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_argb.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_argb.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_common.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_gcc.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_msa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_msa.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_neon.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_neon64.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_row.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/scale_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/scale_win.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/version.h -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/video_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/video_common.cc -------------------------------------------------------------------------------- /xwa_hook_concourse/libyuv/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/libyuv/video_common.h -------------------------------------------------------------------------------- /xwa_hook_concourse/nestegg/nestegg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/nestegg/nestegg.c -------------------------------------------------------------------------------- /xwa_hook_concourse/nestegg/nestegg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/nestegg/nestegg.h -------------------------------------------------------------------------------- /xwa_hook_concourse/nestegg/nestegg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/nestegg/nestegg.vcxproj -------------------------------------------------------------------------------- /xwa_hook_concourse/shaders/shaders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/shaders/shaders.vcxproj -------------------------------------------------------------------------------- /xwa_hook_concourse/xwa_hook_concourse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/xwa_hook_concourse.sln -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/ConcourseDoors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/ConcourseDoors.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/CustomMoviesOnPointsList.txt: -------------------------------------------------------------------------------- 1 | ; points level, cutscene name 2 | 0, ceremony 3 | -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/MedalDetailList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/MedalDetailList.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/MedalsDescriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/MedalsDescriptions.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/MedalsPositions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/MedalsPositions.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/PilotRatingCustomMovies.txt: -------------------------------------------------------------------------------- 1 | ; movie names -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/PilotRatingPoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/PilotRatingPoints.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/RankCustomMovies.txt: -------------------------------------------------------------------------------- 1 | ; movie names -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/RankPoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/RankPoints.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/XwaConcoursePlayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/XwaConcoursePlayer.exe -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/concourse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/concourse.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/hook_concourse.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/hook_concourse.cfg -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/hook_concourse.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/hook_concourse.dll -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/hook_concourse_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/hook_concourse_net.dll -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_concourse/zip/xwa_hook_concourse.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_concourse/zip/xwa_hook_concourse.zip -------------------------------------------------------------------------------- /xwa_hook_countermeasures/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_countermeasures/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_countermeasures/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_countermeasures/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_crafts_count/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_crafts_count/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_crafts_count/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_crafts_count/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_d3d/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/config.cpp -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/config.h -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/d3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/d3d.cpp -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/d3d.h -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/hook_d3d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/hook_d3d.rc -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/hook_d3d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/hook_d3d.vcxproj -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/hooks.h -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/packages.config -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/resource.h -------------------------------------------------------------------------------- /xwa_hook_d3d/hook_d3d/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/hook_d3d/targetver.h -------------------------------------------------------------------------------- /xwa_hook_d3d/xwa_hook_d3d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/xwa_hook_d3d.sln -------------------------------------------------------------------------------- /xwa_hook_d3d/zip/hook_d3d.cfg: -------------------------------------------------------------------------------- 1 | 2 | IsHookD3DEnabled = 0 3 | -------------------------------------------------------------------------------- /xwa_hook_d3d/zip/hook_d3d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/zip/hook_d3d.dll -------------------------------------------------------------------------------- /xwa_hook_d3d/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_d3d/zip/xwa_hook_d3d.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3d/zip/xwa_hook_d3d.zip -------------------------------------------------------------------------------- /xwa_hook_d3dinfos_textures/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3dinfos_textures/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_d3dinfos_textures/zip/hook_d3dinfos_textures.cfg: -------------------------------------------------------------------------------- 1 | Size = 10000 2 | -------------------------------------------------------------------------------- /xwa_hook_d3dinfos_textures/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_d3dinfos_textures/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_diag/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/config.cpp -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/config.h -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/diag.cpp -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/diag.h -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/hook_diag.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/hook_diag.rc -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/hook_diag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/hook_diag.vcxproj -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/hooks.h -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/packages.config -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/resource.h -------------------------------------------------------------------------------- /xwa_hook_diag/hook_diag/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/hook_diag/targetver.h -------------------------------------------------------------------------------- /xwa_hook_diag/xwa_hook_diag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/xwa_hook_diag.sln -------------------------------------------------------------------------------- /xwa_hook_diag/zip/hook_diag.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/zip/hook_diag.cfg -------------------------------------------------------------------------------- /xwa_hook_diag/zip/hook_diag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/zip/hook_diag.dll -------------------------------------------------------------------------------- /xwa_hook_diag/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_diag/zip/xwa_hook_diag.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_diag/zip/xwa_hook_diag.zip -------------------------------------------------------------------------------- /xwa_hook_dock/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/config.cpp -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/config.h -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/dock.cpp -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/dock.h -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/hook_dock.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/hook_dock.rc -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/hook_dock.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/hook_dock.vcxproj -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/hooks.h -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/packages.config -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/resource.h -------------------------------------------------------------------------------- /xwa_hook_dock/hook_dock/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/hook_dock/targetver.h -------------------------------------------------------------------------------- /xwa_hook_dock/xwa_hook_dock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/xwa_hook_dock.sln -------------------------------------------------------------------------------- /xwa_hook_dock/zip/SpaceColony2Dock.txt: -------------------------------------------------------------------------------- 1 | 2 | DockElevation = 0 3 | -------------------------------------------------------------------------------- /xwa_hook_dock/zip/hook_dock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/zip/hook_dock.cfg -------------------------------------------------------------------------------- /xwa_hook_dock/zip/hook_dock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/zip/hook_dock.dll -------------------------------------------------------------------------------- /xwa_hook_dock/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_dock/zip/xwa_hook_dock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_dock/zip/xwa_hook_dock.zip -------------------------------------------------------------------------------- /xwa_hook_engine_sound/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_engine_sound/sounds functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/sounds functions.txt -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/EmptySound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/EmptySound.txt -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/EngineSound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/EngineSound.txt -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Examples/TieBigGunSound.txt: -------------------------------------------------------------------------------- 1 | 2 | WeaponSoundBehavior = TieFighter 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Examples/TieBizarroSound.txt: -------------------------------------------------------------------------------- 1 | 2 | WeaponSoundBehavior = TieFighter 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Examples/TieBombSound.txt: -------------------------------------------------------------------------------- 1 | 2 | WeaponSoundBehavior = TieFighter 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Examples/TieBoosterSound.txt: -------------------------------------------------------------------------------- 1 | 2 | WeaponSoundBehavior = TieFighter 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Examples/TieWarheadsSound.txt: -------------------------------------------------------------------------------- 1 | 2 | WeaponSoundBehavior = TieFighter 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Interdiction.txt: -------------------------------------------------------------------------------- 1 | 2 | Region = 2, 3 3 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Sounds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/Sounds.txt -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Wave/Sfx_FlyBy.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/Wave/Sfx_FlyBy.lst -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Wave/Sfx_Sounds.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/Wave/Sfx_Sounds.lst -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Wave/Sfx_Weapon.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/Wave/Sfx_Weapon.lst -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/Wave/Sfx_WeaponRange.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xwa_hook_engine_sound/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_engine_sound/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_exterior/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/config.cpp -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/config.h -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/exterior.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/exterior.cpp -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/exterior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/exterior.h -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/hooks.h -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/resource.h -------------------------------------------------------------------------------- /xwa_hook_exterior/hook_exterior/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/hook_exterior/targetver.h -------------------------------------------------------------------------------- /xwa_hook_exterior/xwa_hook_exterior.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/xwa_hook_exterior.sln -------------------------------------------------------------------------------- /xwa_hook_exterior/zip/hook_exterior.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/zip/hook_exterior.dll -------------------------------------------------------------------------------- /xwa_hook_exterior/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_exterior/zip/xwa_hook_exterior.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_exterior/zip/xwa_hook_exterior.zip -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/hook_gimbal_lock/gimbal_lock.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int GimbalLockUserInputHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/hook_gimbal_lock/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/hook_gimbal_lock/hooks.h -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/xwa_hook_gimbal_lock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/xwa_hook_gimbal_lock.sln -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/zip/hook_gimbal_lock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/zip/hook_gimbal_lock.cfg -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/zip/hook_gimbal_lock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/zip/hook_gimbal_lock.dll -------------------------------------------------------------------------------- /xwa_hook_gimbal_lock/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_gimbal_lock/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/config.cpp -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/config.h -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hangar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hangar.cpp -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hangar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hangar.h -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hook_hangars.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hook_hangars.rc -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/hooks.h -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/packages.config -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/resource.h -------------------------------------------------------------------------------- /xwa_hook_hangars/hook_hangars/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/hook_hangars/targetver.h -------------------------------------------------------------------------------- /xwa_hook_hangars/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/notes.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/xwa_hook_hangars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/xwa_hook_hangars.sln -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/BWingSize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/BWingSize.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/CraftSelectionCrafts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/CraftSelectionCrafts.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/FamHangarCamera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/FamHangarCamera.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/FamHangarMap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/FamHangarMap.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/HangarCamera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/HangarCamera.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/HangarMap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/HangarMap.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/HangarObjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/HangarObjects.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/PlayerCamera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/PlayerCamera.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/hook_hangars.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/hook_hangars.cfg -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/hook_hangars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/hook_hangars.dll -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_hangars/zip/xwa_hook_hangars.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hangars/zip/xwa_hook_hangars.zip -------------------------------------------------------------------------------- /xwa_hook_hull_icon/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/config.cpp -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/config.h -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/hooks.h -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/hull_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/hull_icon.h -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/resource.h -------------------------------------------------------------------------------- /xwa_hook_hull_icon/hook_hull_icon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/hook_hull_icon/targetver.h -------------------------------------------------------------------------------- /xwa_hook_hull_icon/xwa_hook_hull_icon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/xwa_hook_hull_icon.sln -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/HullIcon.txt: -------------------------------------------------------------------------------- 1 | 2 | PlayerHullIcon = 100 3 | -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/HullIconList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/HullIconList.txt -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/MapIconList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/MapIconList.txt -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/Objects.txt: -------------------------------------------------------------------------------- 1 | 2 | FlightModels\AWing_HullIcon = 300 3 | -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/hook_hull_icon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/hook_hull_icon.cfg -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/hook_hull_icon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/hook_hull_icon.dll -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_hull_icon/zip/xwa_hook_hull_icon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hull_icon/zip/xwa_hook_hull_icon.zip -------------------------------------------------------------------------------- /xwa_hook_hyperspace/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_hyperspace/hook_hyperspace/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/hook_hyperspace/config.h -------------------------------------------------------------------------------- /xwa_hook_hyperspace/hook_hyperspace/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/hook_hyperspace/hooks.h -------------------------------------------------------------------------------- /xwa_hook_hyperspace/xwa_hook_hyperspace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/xwa_hook_hyperspace.sln -------------------------------------------------------------------------------- /xwa_hook_hyperspace/zip/Wave/Sfx_EnterHyperspace/_setup.txt: -------------------------------------------------------------------------------- 1 | 2 | To setup Sfx_EnterHyperspace, copy the sound files here 3 | -------------------------------------------------------------------------------- /xwa_hook_hyperspace/zip/Wave/Sfx_ExitHyperspace/_setup.txt: -------------------------------------------------------------------------------- 1 | 2 | To setup Sfx_ExitHyperspace, copy the sound files here 3 | -------------------------------------------------------------------------------- /xwa_hook_hyperspace/zip/hook_hyperspace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/zip/hook_hyperspace.cfg -------------------------------------------------------------------------------- /xwa_hook_hyperspace/zip/hook_hyperspace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/zip/hook_hyperspace.dll -------------------------------------------------------------------------------- /xwa_hook_hyperspace/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_hyperspace/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_interdictor/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_interdictor/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_interdictor/hook_interdictor/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_interdictor/hook_interdictor/hooks.h -------------------------------------------------------------------------------- /xwa_hook_interdictor/hook_interdictor/interdictor.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int InterdictorHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_interdictor/xwa_hook_interdictor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_interdictor/xwa_hook_interdictor.sln -------------------------------------------------------------------------------- /xwa_hook_interdictor/zip/Interdictor2Interdictor.txt: -------------------------------------------------------------------------------- 1 | 2 | IsInterdictor = 1 3 | -------------------------------------------------------------------------------- /xwa_hook_interdictor/zip/ModStrikeCruiserInterdictor.txt: -------------------------------------------------------------------------------- 1 | 2 | IsInterdictor = 1 3 | -------------------------------------------------------------------------------- /xwa_hook_interdictor/zip/hook_interdictor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_interdictor/zip/hook_interdictor.dll -------------------------------------------------------------------------------- /xwa_hook_interdictor/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_interdictor/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/hangar_jamming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hangar_jamming.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/config.cpp -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/config.h -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/hook_jamming.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/hook_jamming.rc -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/hooks.h -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/jamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/jamming.cpp -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/jamming.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int HangarJammingHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/packages.config -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/resource.h -------------------------------------------------------------------------------- /xwa_hook_jamming/hook_jamming/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/hook_jamming/targetver.h -------------------------------------------------------------------------------- /xwa_hook_jamming/xwa_hook_jamming.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/xwa_hook_jamming.sln -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/FactoryJamming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/FactoryJamming.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/Interdictor2Jamming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/Interdictor2Jamming.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/RepairYardJamming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/RepairYardJamming.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/hook_jamming.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/hook_jamming.cfg -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/hook_jamming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/hook_jamming.dll -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_jamming/zip/xwa_hook_jamming.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_jamming/zip/xwa_hook_jamming.zip -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/hook_joystick_ff/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/hook_joystick_ff/hooks.h -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/xwa_hook_joystick_ff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/xwa_hook_joystick_ff.sln -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/zip/JoystickConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/zip/JoystickConfig.txt -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/zip/hook_joystick_ff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/zip/hook_joystick_ff.dll -------------------------------------------------------------------------------- /xwa_hook_joystick_ff/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_joystick_ff/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_lightmaps/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_lightmaps/hook_lightmaps/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/hook_lightmaps/hooks.h -------------------------------------------------------------------------------- /xwa_hook_lightmaps/hook_lightmaps/lightmaps.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int LightmapsHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_lightmaps/hook_lightmaps/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/hook_lightmaps/resource.h -------------------------------------------------------------------------------- /xwa_hook_lightmaps/hook_lightmaps/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/hook_lightmaps/targetver.h -------------------------------------------------------------------------------- /xwa_hook_lightmaps/xwa_hook_lightmaps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/xwa_hook_lightmaps.sln -------------------------------------------------------------------------------- /xwa_hook_lightmaps/zip/hook_lightmaps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/zip/hook_lightmaps.dll -------------------------------------------------------------------------------- /xwa_hook_lightmaps/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_lightmaps/zip/xwa_hook_lightmaps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_lightmaps/zip/xwa_hook_lightmaps.zip -------------------------------------------------------------------------------- /xwa_hook_main/dinput/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/common.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/config.cpp -------------------------------------------------------------------------------- /xwa_hook_main/dinput/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/config.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dinput.cpp -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dinput.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dinput.def -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dinput.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dinput.rc -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dinput.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dinput.vcxproj -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dinput.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dinput.vcxproj.filters -------------------------------------------------------------------------------- /xwa_hook_main/dinput/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/dllmain.cpp -------------------------------------------------------------------------------- /xwa_hook_main/dinput/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/hook.cpp -------------------------------------------------------------------------------- /xwa_hook_main/dinput/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/hook.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/hooks.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/packages.config -------------------------------------------------------------------------------- /xwa_hook_main/dinput/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/resource.h -------------------------------------------------------------------------------- /xwa_hook_main/dinput/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/dinput/targetver.h -------------------------------------------------------------------------------- /xwa_hook_main/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_main/xwa_hook_main.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/xwa_hook_main.sln -------------------------------------------------------------------------------- /xwa_hook_main/zip/dinput.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/zip/dinput.cfg -------------------------------------------------------------------------------- /xwa_hook_main/zip/dinput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/zip/dinput.dll -------------------------------------------------------------------------------- /xwa_hook_main/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_main/zip/xwa_hook_main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main/zip/xwa_hook_main.zip -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/config.cpp -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/config.h -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/hook.cpp -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/hook.h -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/hooks.h -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/hooks_main/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/hooks_main/resource.h -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/zip/dinput.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/zip/dinput.cfg -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/zip/hooks_main.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/zip/hooks_main.dll -------------------------------------------------------------------------------- /xwa_hook_main_no_dinput/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_main_no_dinput/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_mission_objects/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_objects/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_mission_objects/exe_edit_profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_objects/exe_edit_profile.txt -------------------------------------------------------------------------------- /xwa_hook_mission_objects/exe_edit_turrets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_objects/exe_edit_turrets.txt -------------------------------------------------------------------------------- /xwa_hook_mission_objects/zip/EscortShuttleTurrets.txt: -------------------------------------------------------------------------------- 1 | 2 | TurretForwardFire = 0 3 | -------------------------------------------------------------------------------- /xwa_hook_mission_objects/zip/Objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_objects/zip/Objects.txt -------------------------------------------------------------------------------- /xwa_hook_mission_objects/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_objects/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_mission_tie/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_mission_tie/hook_mission_tie/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/hook_mission_tie/hooks.h -------------------------------------------------------------------------------- /xwa_hook_mission_tie/hook_mission_tie/tie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/hook_mission_tie/tie.cpp -------------------------------------------------------------------------------- /xwa_hook_mission_tie/hook_mission_tie/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/hook_mission_tie/tie.h -------------------------------------------------------------------------------- /xwa_hook_mission_tie/xwa_hook_mission_tie.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/xwa_hook_mission_tie.sln -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/StatsProfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/StatsProfiles.txt -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/XWing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/XWing.ini -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/hook_mission_tie.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/hook_mission_tie.cfg -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/hook_mission_tie.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/hook_mission_tie.dll -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/mission.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/mission.txt -------------------------------------------------------------------------------- /xwa_hook_mission_tie/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_mission_tie/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_music/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/ComPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/ComPtr.h -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/hook_music.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/hook_music.rc -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/hook_music.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/hook_music.vcxproj -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/hooks.h -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/music.cpp -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/music.h -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/packages.config -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/resource.h -------------------------------------------------------------------------------- /xwa_hook_music/hook_music/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/hook_music/targetver.h -------------------------------------------------------------------------------- /xwa_hook_music/xwa_hook_music.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/xwa_hook_music.sln -------------------------------------------------------------------------------- /xwa_hook_music/zip/hook_music.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/zip/hook_music.dll -------------------------------------------------------------------------------- /xwa_hook_music/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_music/zip/xaudio2_9redist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/zip/xaudio2_9redist.dll -------------------------------------------------------------------------------- /xwa_hook_music/zip/xwa_hook_music.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_music/zip/xwa_hook_music.zip -------------------------------------------------------------------------------- /xwa_hook_normals/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_normals/exe_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/exe_functions.txt -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/config.cpp -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/config.h -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/hook_normals.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/hook_normals.rc -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/hooks.h -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/normals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/normals.cpp -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/normals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/normals.h -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/packages.config -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/resource.h -------------------------------------------------------------------------------- /xwa_hook_normals/hook_normals/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/hook_normals/targetver.h -------------------------------------------------------------------------------- /xwa_hook_normals/vert_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/vert_code.txt -------------------------------------------------------------------------------- /xwa_hook_normals/xwa_hook_normals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/xwa_hook_normals.sln -------------------------------------------------------------------------------- /xwa_hook_normals/zip/hook_normals.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/zip/hook_normals.cfg -------------------------------------------------------------------------------- /xwa_hook_normals/zip/hook_normals.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/zip/hook_normals.dll -------------------------------------------------------------------------------- /xwa_hook_normals/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_normals/zip/xwa_hook_normals.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_normals/zip/xwa_hook_normals.zip -------------------------------------------------------------------------------- /xwa_hook_opt_limit/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/exe_edit_engines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/exe_edit_engines.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/exe_edit_meshes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/exe_edit_meshes.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/exe_edit_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/exe_edit_multi.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/exe_edit_weaponracks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/exe_edit_weaponracks.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/config.cpp -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/config.h -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/hooks.h -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/opt_limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/opt_limit.h -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/resource.h -------------------------------------------------------------------------------- /xwa_hook_opt_limit/hook_opt_limit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/hook_opt_limit/targetver.h -------------------------------------------------------------------------------- /xwa_hook_opt_limit/xwa_hook_opt_limit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/xwa_hook_opt_limit.sln -------------------------------------------------------------------------------- /xwa_hook_opt_limit/zip/XWingEngineGlows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/zip/XWingEngineGlows.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/zip/hook_opt_limit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/zip/hook_opt_limit.cfg -------------------------------------------------------------------------------- /xwa_hook_opt_limit/zip/hook_opt_limit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/zip/hook_opt_limit.dll -------------------------------------------------------------------------------- /xwa_hook_opt_limit/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_opt_limit/zip/xwa_hook_opt_limit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_opt_limit/zip/xwa_hook_opt_limit.zip -------------------------------------------------------------------------------- /xwa_hook_patcher/hook_patcher/ExePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/hook_patcher/ExePatcher.cs -------------------------------------------------------------------------------- /xwa_hook_patcher/hook_patcher/HookFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/hook_patcher/HookFunction.cs -------------------------------------------------------------------------------- /xwa_hook_patcher/hook_patcher/HookMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/hook_patcher/HookMain.cs -------------------------------------------------------------------------------- /xwa_hook_patcher/xwa_hook_patcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/xwa_hook_patcher.sln -------------------------------------------------------------------------------- /xwa_hook_patcher/zip/hook_patcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/zip/hook_patcher.dll -------------------------------------------------------------------------------- /xwa_hook_patcher/zip/hook_patcher.txt: -------------------------------------------------------------------------------- 1 | show framerate = 1 2 | -------------------------------------------------------------------------------- /xwa_hook_patcher/zip/hook_patcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/zip/hook_patcher.xml -------------------------------------------------------------------------------- /xwa_hook_patcher/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_patcher/zip/xwa_hook_patcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_patcher/zip/xwa_hook_patcher.zip -------------------------------------------------------------------------------- /xwa_hook_pilot/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/config.cpp -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/config.h -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/hook_pilot.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/hook_pilot.rc -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/hook_pilot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/hook_pilot.vcxproj -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/hooks.h -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/packages.config -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/pilot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/pilot.cpp -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/pilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/pilot.h -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/resource.h -------------------------------------------------------------------------------- /xwa_hook_pilot/hook_pilot/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/hook_pilot/targetver.h -------------------------------------------------------------------------------- /xwa_hook_pilot/xwa_hook_pilot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/xwa_hook_pilot.sln -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/AWingPilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/AWingPilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/AWingPilotCockpit.txt: -------------------------------------------------------------------------------- 1 | ;mesh index, angle, speed, behavior 2 | empty 3 | -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/FamilyTransportPilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/FamilyTransportPilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/HangarDroid2Pilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/HangarDroid2Pilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/HangarDroidPilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/HangarDroidPilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/MilleniumFalcon2Pilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/MilleniumFalcon2Pilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/XWingPilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/XWingPilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/YWingPilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/YWingPilot.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/hook_pilot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/hook_pilot.dll -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_pilot/zip/xwa_hook_pilot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_pilot/zip/xwa_hook_pilot.zip -------------------------------------------------------------------------------- /xwa_hook_res1200/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/hook_res1200.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/hook_res1200.rc -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/hooks.h -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/packages.config -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/res1200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/res1200.cpp -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/res1200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/res1200.h -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/resource.h -------------------------------------------------------------------------------- /xwa_hook_res1200/hook_res1200/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/hook_res1200/targetver.h -------------------------------------------------------------------------------- /xwa_hook_res1200/xwa_hook_res1200.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/xwa_hook_res1200.sln -------------------------------------------------------------------------------- /xwa_hook_res1200/zip/hook_res1200.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/zip/hook_res1200.dll -------------------------------------------------------------------------------- /xwa_hook_res1200/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_res1200/zip/xwa_hook_res1200.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_res1200/zip/xwa_hook_res1200.zip -------------------------------------------------------------------------------- /xwa_hook_resolution/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_resolution/hook_resolution/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/hook_resolution/config.h -------------------------------------------------------------------------------- /xwa_hook_resolution/hook_resolution/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/hook_resolution/hooks.h -------------------------------------------------------------------------------- /xwa_hook_resolution/xwa_hook_resolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/xwa_hook_resolution.sln -------------------------------------------------------------------------------- /xwa_hook_resolution/zip/hook_resolution.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/zip/hook_resolution.cfg -------------------------------------------------------------------------------- /xwa_hook_resolution/zip/hook_resolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/zip/hook_resolution.dll -------------------------------------------------------------------------------- /xwa_hook_resolution/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_resolution/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_reticle/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/config.cpp -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/config.h -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/hook_reticle.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/hook_reticle.rc -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/hooks.h -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/packages.config -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/resource.h -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/reticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/reticle.cpp -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/reticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/reticle.h -------------------------------------------------------------------------------- /xwa_hook_reticle/hook_reticle/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/hook_reticle/targetver.h -------------------------------------------------------------------------------- /xwa_hook_reticle/xwa_hook_reticle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/xwa_hook_reticle.sln -------------------------------------------------------------------------------- /xwa_hook_reticle/zip/XWingReticle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/zip/XWingReticle.txt -------------------------------------------------------------------------------- /xwa_hook_reticle/zip/hook_reticle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/zip/hook_reticle.dll -------------------------------------------------------------------------------- /xwa_hook_reticle/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_reticle/zip/xwa_hook_reticle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_reticle/zip/xwa_hook_reticle.zip -------------------------------------------------------------------------------- /xwa_hook_sfoils/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/config.cpp -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/config.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/hook_sfoils.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/hook_sfoils.rc -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/hooks.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/packages.config -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/resource.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/sfoils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/sfoils.cpp -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/sfoils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/sfoils.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/targetver.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/translate.cpp -------------------------------------------------------------------------------- /xwa_hook_sfoils/hook_sfoils/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/hook_sfoils/translate.h -------------------------------------------------------------------------------- /xwa_hook_sfoils/xwa_hook_sfoils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/xwa_hook_sfoils.sln -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/BWingSFoils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/BWingSFoils.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/ShuttleSFoils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/ShuttleSFoils.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/Wave/Sfx_SFoil.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/Wave/Sfx_SFoil.lst -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/Wave/Sfx_SFoil/_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/Wave/Sfx_SFoil/_setup.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/XWingSFoils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/XWingSFoils.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/hook_sfoils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/hook_sfoils.cfg -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/hook_sfoils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/hook_sfoils.dll -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_sfoils/zip/xwa_hook_sfoils.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sfoils/zip/xwa_hook_sfoils.zip -------------------------------------------------------------------------------- /xwa_hook_shield/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/config.cpp -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/config.h -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/hook_shield.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/hook_shield.rc -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/hooks.h -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/packages.config -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/resource.h -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/shield.cpp -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/shield.h -------------------------------------------------------------------------------- /xwa_hook_shield/hook_shield/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/hook_shield/targetver.h -------------------------------------------------------------------------------- /xwa_hook_shield/xwa_hook_shield.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/xwa_hook_shield.sln -------------------------------------------------------------------------------- /xwa_hook_shield/zip/Corvette2Shield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/Corvette2Shield.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/Frigate2Shield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/Frigate2Shield.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/Interdictor2Shield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/Interdictor2Shield.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/XWingShield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/XWingShield.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/hook_shield.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/hook_shield.cfg -------------------------------------------------------------------------------- /xwa_hook_shield/zip/hook_shield.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/hook_shield.dll -------------------------------------------------------------------------------- /xwa_hook_shield/zip/mission_Shield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/mission_Shield.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_shield/zip/xwa_hook_shield.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_shield/zip/xwa_hook_shield.zip -------------------------------------------------------------------------------- /xwa_hook_slam/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/config.cpp -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/config.h -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/hook_slam.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/hook_slam.rc -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/hook_slam.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/hook_slam.vcxproj -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/hooks.h -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/packages.config -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/resource.h -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/slam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/slam.cpp -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/slam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/slam.h -------------------------------------------------------------------------------- /xwa_hook_slam/hook_slam/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/hook_slam/targetver.h -------------------------------------------------------------------------------- /xwa_hook_slam/xwa_hook_slam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/xwa_hook_slam.sln -------------------------------------------------------------------------------- /xwa_hook_slam/zip/MissileBoatSlam.txt: -------------------------------------------------------------------------------- 1 | 2 | HasSlam = 1 3 | -------------------------------------------------------------------------------- /xwa_hook_slam/zip/WAVE/overdrive.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/WAVE/overdrive.lst -------------------------------------------------------------------------------- /xwa_hook_slam/zip/WAVE/overdrive/POWERDN.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/WAVE/overdrive/POWERDN.WAV -------------------------------------------------------------------------------- /xwa_hook_slam/zip/WAVE/overdrive/POWERUP.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/WAVE/overdrive/POWERUP.WAV -------------------------------------------------------------------------------- /xwa_hook_slam/zip/hook_slam.cfg: -------------------------------------------------------------------------------- 1 | 2 | SlamEnablePenalty = 4 3 | -------------------------------------------------------------------------------- /xwa_hook_slam/zip/hook_slam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/hook_slam.dll -------------------------------------------------------------------------------- /xwa_hook_slam/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_slam/zip/xwa_hook_slam.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_slam/zip/xwa_hook_slam.zip -------------------------------------------------------------------------------- /xwa_hook_sounds_count/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sounds_count/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_sounds_count/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_sounds_count/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_targetboxtoggle/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_targetboxtoggle/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_targetboxtoggle/hook_targetboxtoggle/targetboxtoggle.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int TargetboxToggleHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_targetboxtoggle/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_targetboxtoggle/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_textures_tag/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_textures_tag/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_textures_tag/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_textures_tag/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_time/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/config.cpp -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/config.h -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/get_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/get_time.cpp -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/get_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/get_time.h -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/hook_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/hook_function.h -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/hook_time.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/hook_time.rc -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/hook_time.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/hook_time.vcxproj -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/hooks.h -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/packages.config -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/resource.h -------------------------------------------------------------------------------- /xwa_hook_time/hook_time/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/hook_time/targetver.h -------------------------------------------------------------------------------- /xwa_hook_time/xwa_hook_time.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/xwa_hook_time.sln -------------------------------------------------------------------------------- /xwa_hook_time/zip/hook_time.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/zip/hook_time.cfg -------------------------------------------------------------------------------- /xwa_hook_time/zip/hook_time.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/zip/hook_time.dll -------------------------------------------------------------------------------- /xwa_hook_time/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_time/zip/xwa_hook_time.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_time/zip/xwa_hook_time.zip -------------------------------------------------------------------------------- /xwa_hook_tourmultiplayer/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_tourmultiplayer/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_tourmultiplayer/patch_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_tourmultiplayer/patch_memory.txt -------------------------------------------------------------------------------- /xwa_hook_tourmultiplayer/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_tourmultiplayer/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_userdata/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/config.cpp -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/config.h -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/hooks.h -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/resource.h -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/targetver.h -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/userdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/userdata.cpp -------------------------------------------------------------------------------- /xwa_hook_userdata/hook_userdata/userdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/hook_userdata/userdata.h -------------------------------------------------------------------------------- /xwa_hook_userdata/xwa_hook_userdata.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/xwa_hook_userdata.sln -------------------------------------------------------------------------------- /xwa_hook_userdata/zip/hook_userdata.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/zip/hook_userdata.cfg -------------------------------------------------------------------------------- /xwa_hook_userdata/zip/hook_userdata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/zip/hook_userdata.dll -------------------------------------------------------------------------------- /xwa_hook_userdata/zip/modname.txt: -------------------------------------------------------------------------------- 1 | XWA 2 | -------------------------------------------------------------------------------- /xwa_hook_userdata/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_userdata/zip/xwa_hook_userdata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_userdata/zip/xwa_hook_userdata.zip -------------------------------------------------------------------------------- /xwa_hook_weapon_color/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_color/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_color/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_color/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_lock/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_lock/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_lock/hook_weapon_lock/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_lock/hook_weapon_lock/hooks.h -------------------------------------------------------------------------------- /xwa_hook_weapon_lock/xwa_hook_weapon_lock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_lock/xwa_hook_weapon_lock.sln -------------------------------------------------------------------------------- /xwa_hook_weapon_lock/zip/hook_weapon_lock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_lock/zip/hook_weapon_lock.dll -------------------------------------------------------------------------------- /xwa_hook_weapon_lock/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_lock/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/desc.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/hook_weapon_rate/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/hook_weapon_rate/hooks.h -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/xwa_hook_weapon_rate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/xwa_hook_weapon_rate.sln -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/zip/hook_weapon_rate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/zip/hook_weapon_rate.cfg -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/zip/hook_weapon_rate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/zip/hook_weapon_rate.dll -------------------------------------------------------------------------------- /xwa_hook_weapon_rate/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_rate/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_type/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_type/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_weapon_type/hook_weapon_type/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_type/hook_weapon_type/hooks.h -------------------------------------------------------------------------------- /xwa_hook_weapon_type/xwa_hook_weapon_type.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_type/xwa_hook_weapon_type.sln -------------------------------------------------------------------------------- /xwa_hook_weapon_type/zip/hook_weapon_type.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_type/zip/hook_weapon_type.dll -------------------------------------------------------------------------------- /xwa_hook_weapon_type/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_weapon_type/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_windowed/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/config.cpp -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/config.h -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/hookmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/hookmain.cpp -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/hooks.h -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/resource.h -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/targetver.h -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/windowed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/windowed.cpp -------------------------------------------------------------------------------- /xwa_hook_windowed/hook_windowed/windowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/hook_windowed/windowed.h -------------------------------------------------------------------------------- /xwa_hook_windowed/xwa_hook_windowed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/xwa_hook_windowed.sln -------------------------------------------------------------------------------- /xwa_hook_windowed/zip/hook_windowed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/zip/hook_windowed.cfg -------------------------------------------------------------------------------- /xwa_hook_windowed/zip/hook_windowed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/zip/hook_windowed.dll -------------------------------------------------------------------------------- /xwa_hook_windowed/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/zip/readme.txt -------------------------------------------------------------------------------- /xwa_hook_windowed/zip/xwa_hook_windowed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_windowed/zip/xwa_hook_windowed.zip -------------------------------------------------------------------------------- /xwa_hook_wingmen_voices/exe_edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_wingmen_voices/exe_edit.txt -------------------------------------------------------------------------------- /xwa_hook_wingmen_voices/hook_wingmen_voices/wingmen_voices.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int WingmenVoicesHook(int* params); 4 | -------------------------------------------------------------------------------- /xwa_hook_wingmen_voices/zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyAnsel/xwa_hooks/HEAD/xwa_hook_wingmen_voices/zip/readme.txt --------------------------------------------------------------------------------