├── .github └── copilot-instructions.md ├── .gitignore ├── Ahk ├── AutoHotkey.dll ├── AutoHotkey64.dll ├── Compile.ahk ├── Compile.exe ├── Compiler │ ├── ANSI 32-bit.bin │ ├── Ahk2Exe.exe │ ├── AutoHotkeySC.bin │ ├── Unicode 32-bit.bin │ └── Unicode 64-bit.bin ├── CreateProcessHooks.ahk ├── D3D.hooks.ahk ├── D3D10.hooks.ahk ├── D3D11.hooks.ahk ├── D3D12.Hooks.ahk ├── D3D8.hooks.ahk ├── D3D9.hooks.ahk ├── D3DCompilers │ ├── x64 │ │ ├── D3DCompiler_47.dll │ │ ├── D3DX9_43.dll │ │ └── d3dx11_43.dll │ └── x86 │ │ ├── D3DCompiler_47.dll │ │ ├── D3DX9_43.dll │ │ └── d3dx11_43.dll ├── D3DX9.ahk ├── GUI │ ├── Cheats_smal.png │ ├── GUIMain.ahk │ ├── GUIMain.exe │ ├── GameIcons │ │ ├── Anachronox.png │ │ └── shogo.png │ ├── PCGamingWiki.svg │ ├── PCGamingWiki_wide.svg │ ├── TextureCompiler.ahk │ ├── bad.svg │ ├── ce.svg │ ├── cheat engine.ahk │ ├── fix.svg │ ├── lib.txt │ ├── linux.svg │ ├── main.html │ ├── nfo.svg │ ├── play.svg │ ├── png │ │ ├── WINE.ico │ │ ├── WINE.png │ │ ├── bad.png │ │ ├── dx12.png │ │ ├── fix.png │ │ ├── gamepad.png │ │ ├── home.png │ │ ├── imp.png │ │ ├── nfo.png │ │ ├── patreon.png │ │ ├── wine-icon.png │ │ └── wip-icon.png │ ├── shortcut.svg │ ├── star.svg │ └── windows.svg ├── Injector.ahk ├── Injector.exe ├── Injector64.ahk ├── Injector64.exe ├── Injector_common.ahk ├── Input.log ├── InstallShield │ ├── InstallShield Wrapper.exe │ ├── InstallShield Wrapper.zip │ ├── InstallShield.ahk │ ├── InstallShield.ahk.bak │ ├── InstallShield.ini │ ├── Is3Engine.zip │ ├── Is5Launcher.zip │ ├── setupv3.exe │ └── setupv5.exe ├── LayerTextSwap.ahk ├── Lib │ ├── DDSFile.ahk │ ├── DInputEmu.ahk │ ├── DirectX │ │ ├── D3D11.ahk │ │ ├── D3D8.ahk │ │ ├── D3D9.ahk │ │ ├── Xinput.ahk │ │ ├── ddraw.ahk │ │ ├── dinput.ahk │ │ ├── dshow.ahk │ │ ├── dsound.ahk │ │ └── headers │ │ │ ├── D3D11.h.Backup.ahk │ │ │ ├── D3D11_1.h.ahk │ │ │ ├── D3D11_2.h.ahk │ │ │ ├── D3D11_3.h.ahk │ │ │ ├── D3D11_4.h.ahk │ │ │ ├── DXGI.h.ahk │ │ │ ├── DXGI1_2.h.ahk │ │ │ ├── DXGI1_3.h.ahk │ │ │ ├── DXGI1_4.h.ahk │ │ │ ├── DXGI1_5.h.ahk │ │ │ ├── DXGI1_6.h.ahk │ │ │ ├── DXGIFormat.h.ahk │ │ │ ├── DXGIType.h.ahk │ │ │ ├── HeaderParser.ahk │ │ │ ├── _DXGI.ahk │ │ │ ├── _d3d.h.ahk │ │ │ ├── _d3d11.ahk │ │ │ ├── _d3d8.h.ahk │ │ │ ├── _d3d9.h.ahk │ │ │ ├── _ddraw.h.ahk │ │ │ ├── _dinput.h.ahk │ │ │ ├── _dshow.ahk │ │ │ ├── _dsound.h.ahk │ │ │ ├── d3d.h.ahk │ │ │ ├── d3d10.h.ahk │ │ │ ├── d3d11.h.ahk │ │ │ ├── d3d11_1.h │ │ │ ├── d3d11_2.h │ │ │ ├── d3d11_3.h │ │ │ ├── d3d11_4.h │ │ │ ├── d3d8.h.ahk │ │ │ ├── d3d8types.h.ahk │ │ │ ├── d3d9.h.ahk │ │ │ ├── d3d9types.h.ahk │ │ │ ├── d3dCommon.h.ahk │ │ │ ├── d3dX8.h.ahk │ │ │ ├── d3dX9.ahk │ │ │ ├── d3dX9core.h.ahk │ │ │ ├── d3dtypes.h.ahk │ │ │ ├── ddraw.h.ahk │ │ │ ├── dinput.h.ahk │ │ │ ├── dshow.h.ahk │ │ │ ├── dsound.h.ahk │ │ │ ├── dxgi1_2.h │ │ │ ├── dxgi1_3.h │ │ │ ├── dxgi1_4.h │ │ │ ├── dxgi1_5.h │ │ │ ├── dxgi1_6.h │ │ │ ├── gl.h.ahk │ │ │ ├── glEXT.h.ahk │ │ │ ├── glcoreARB.h.ahk │ │ │ ├── parser DirectShow.ahk │ │ │ ├── parser DirectX1-9.ahk │ │ │ ├── parser DirectX10-11.ahk │ │ │ └── wglEXT.h.ahk │ ├── FileHooks.ahk │ ├── GUID.ahk │ ├── HDHooks.ahk │ ├── Lib.ahk │ ├── ShaderOverride8.ahk │ ├── ShaderOverride9.ahk │ ├── SurfaceHooks.ahk │ ├── Syslinks.ahk │ ├── TexSwapLib8.ahk │ ├── TexSwapLib8Wine.ahk │ ├── TexSwapLib9.ahk │ ├── TexSwapLibGL.ahk │ ├── TextureManager.ahk │ ├── _Struct.ahk │ ├── _TexSwapLib.ahk │ ├── _filesystem.ahk │ ├── ahkhook.ahk │ ├── ini.ahk │ ├── memlib.ahk │ ├── shell.ahk │ └── sizeof.ahk ├── MCI.ahk ├── Patches │ ├── CLOS2 │ │ ├── dump1.bin │ │ └── dump1.hlsl │ ├── CMOF │ │ ├── _dump0.txt │ │ ├── _dump2.txt │ │ ├── dump0.bin │ │ ├── dump0.hlsl │ │ ├── dump2.bin │ │ └── dump2.hlsl │ ├── Dark Earth │ │ ├── InstallDarkEarth.bat │ │ ├── de_upd1.zip │ │ └── i3comp.exe │ ├── IAmAlive_game │ │ ├── blacknwhite(sprint).bin │ │ ├── blacknwhite(sprint).psh │ │ ├── blacknwhite(sprint).txt │ │ ├── blacknwhite.bin │ │ ├── blacknwhite.psh │ │ ├── blacknwhite.txt │ │ ├── blur.bin │ │ ├── blur.psh │ │ ├── blur.txt │ │ ├── missingtexts.bin │ │ ├── missingtexts.psh │ │ ├── missingtexts.txt │ │ ├── popinglights.bin │ │ ├── popinglights.psh │ │ └── popinglights.txt │ ├── JUNK │ │ ├── ResidentEvil3 │ │ │ └── Magenta.JPG │ │ ├── Shadow Mapping │ │ │ ├── dump0.bin │ │ │ ├── dump0.hlsl │ │ │ ├── dump0.txt │ │ │ ├── dump1.bin │ │ │ ├── dump1.hlsl │ │ │ └── dump1.txt │ │ ├── dump0.bin │ │ ├── dump0.hlsl │ │ ├── dump0.pshh │ │ ├── dump0.txt │ │ ├── dump1.bin │ │ ├── dump1.hlsl │ │ └── dump1.txt │ ├── Never_Alone │ │ ├── DOF-Far.bin │ │ ├── DOF-Far.txt │ │ ├── DOF-Near.bin │ │ ├── DOF-Near.hlsl │ │ ├── DOF-Near.txt │ │ ├── Edge Blur.bin │ │ ├── Edge Blur.txt │ │ ├── ScreenFix.bin │ │ ├── ScreenFix.txt │ │ ├── Shadows.bin │ │ └── Shadows.txt │ ├── Onimusha │ │ └── room404b.xsd │ ├── PrinceofPersia │ │ ├── dump0.bin │ │ ├── dump0.hlsl │ │ └── dump0.txt │ ├── Unravel │ │ ├── Bloom.bin │ │ ├── Bloom.hlsl │ │ ├── Bloom.txt │ │ ├── DOFHigh.bin │ │ ├── DOFHigh.hlsl │ │ ├── DOFHigh.txt │ │ ├── DOFLow.bin │ │ ├── DOFLow.hlsl │ │ └── DOFLow.txt │ └── UnravelTwo │ │ ├── DOF.bin │ │ ├── DOF.hlsl │ │ └── DOF.txt ├── Server │ ├── InstallShield.ahk │ ├── Server.ahk │ ├── Server.exe │ ├── cheat engine.ahk │ ├── css │ │ ├── __stylesheet.css │ │ ├── __stylesheet.css.map │ │ ├── __stylesheet.scss │ │ ├── _bootstrap │ │ └── stylesheet.css │ ├── html │ │ ├── base.html │ │ ├── config-ini.html │ │ ├── game-page-renderer.html │ │ ├── games-list-loader.html │ │ ├── games-list.html │ │ └── home.html │ ├── img │ │ ├── Cheats_small.png │ │ ├── PCGamingWiki_wide.svg │ │ ├── WINE.png │ │ ├── bad.png │ │ ├── bad.svg │ │ ├── ce.svg │ │ ├── dx12.png │ │ ├── favicon.ico │ │ ├── fix.png │ │ ├── fix.svg │ │ ├── gamepad.png │ │ ├── home.png │ │ ├── imp.png │ │ ├── nfo.png │ │ ├── nfo.svg │ │ ├── patreon.png │ │ ├── star.svg │ │ ├── wine-icon.png │ │ └── wip-icon.png │ └── lib.txt ├── Shaders │ ├── CS_5.0.hlsl │ ├── FSR_1_0 │ │ ├── ffx_a.h │ │ └── ffx_fsr1.h │ ├── HLSL_4.0.hlsl │ ├── PS_3.0.hlsl │ ├── xBRz.fx │ └── xBRz.glsl ├── Todo.txt ├── WinAPI.hooks.ahk ├── WinMM.log ├── d3d_hooks.log ├── dinput.hooks.ahk ├── dshow.hooks.ahk ├── dsound.hooks.ahk ├── error.log ├── exlib.ahk ├── gl.hooks.ahk ├── last ├── main.ini ├── peixoto.dll ├── remote_lib.ahk ├── src │ ├── CreateProcessHooks.txt │ ├── D3D.Legacy.hooks.txt │ ├── D3D.Legacy │ │ ├── D3D.hooks.ahk │ │ ├── HDHooks.ahk │ │ ├── SurfaceHooks.ahk │ │ ├── TextureManager.ahk │ │ ├── _TexSwapLib.ahk │ │ └── ddraw.ahk │ ├── D3D.hooks.txt │ ├── D3D11.hooks.txt │ ├── D3D12.hooks.txt │ ├── D3D8.hooks.txt │ ├── D3D9.hooks.txt │ ├── D3DX9.txt │ ├── D3D_DDI.Hooks.txt │ ├── MCI.txt │ ├── WinAPI.Hooks.txt │ ├── Xinput.txt │ ├── dinput.hooks.txt │ ├── dshow.hooks.txt │ ├── dsound.hooks.txt │ ├── exlib.txt │ ├── gl.hooks.txt │ ├── injector.txt │ ├── injector64.txt │ └── remote_lib.txt └── wined3d │ ├── 10_0 │ ├── SysWOW64 │ │ ├── WINED3D README.txt │ │ ├── d3d10.dll │ │ ├── d3d10_1.dll │ │ ├── d3d10core.dll │ │ ├── d3d11.dll │ │ ├── d3d8.dll │ │ ├── d3d9.dll │ │ ├── ddraw.dll │ │ ├── dxgi.dll │ │ └── wined3d.dll │ └── System32 │ │ ├── WINED3D README.txt │ │ ├── d3d10.dll │ │ ├── d3d10_1.dll │ │ ├── d3d10core.dll │ │ ├── d3d11.dll │ │ ├── d3d8.dll │ │ ├── d3d9.dll │ │ ├── ddraw.dll │ │ ├── dxgi.dll │ │ └── wined3d.dll │ └── 9_0 │ ├── SysWOW64 │ ├── WINED3D README.txt │ ├── d3d10.dll │ ├── d3d10_1.dll │ ├── d3d10core.dll │ ├── d3d11.dll │ ├── d3d8.dll │ ├── d3d9.dll │ ├── ddraw.dll │ ├── dxgi.dll │ └── wined3d.dll │ └── System32 │ ├── WINED3D README.txt │ ├── d3d10.dll │ ├── d3d10_1.dll │ ├── d3d10core.dll │ ├── d3d11.dll │ ├── d3d8.dll │ ├── d3d9.dll │ ├── ddraw.dll │ ├── dxgi.dll │ └── wined3d.dll ├── CheatTables ├── A Short Hike.CT ├── A Short Hike.CT.ahk ├── Alice.CT ├── Alice.CT.ahk ├── Alien Earth.CT ├── Alien Earth.CT.ahk ├── Aliens vs Predator 2.CT ├── Aliens vs Predator 2.CT.ahk ├── Aliens vs Predator Classic.CT ├── Aliens vs Predator Classic.CT.ahk ├── Alone in the Dark - The New Nightmare.CT ├── Alone in the Dark - The New Nightmare.CT.ahk ├── Anachronox.CT ├── Anachronox.CT.ahk ├── Another World - 20th Anniversary edition.CT ├── Another World - 20th Anniversary edition.CT.ahk ├── Bermuda Syndrome - SDL.CT ├── Bermuda Syndrome - SDL.CT.ahk ├── Bioshock.CT ├── Bioshock.CT.ahk ├── Blade of Darkness Classic.CT ├── Blade of Darkness Classic.CT.ahk ├── Braid.CT ├── Braid.CT.ahk ├── Brothers.CT ├── Brothers.CT.ahk ├── CEPluginLib.ahk ├── CheatEngine.ct ├── Contrast.CT ├── Contrast.CT.ahk ├── Control.CT ├── Control.ct.ahk ├── Crysis.CT ├── Crysis.CT.ahk ├── Crysis2.CT ├── Crysis2.CT.ahk ├── Dark Earth.CT ├── Dark Earth.CT.ahk ├── Dark Vengeance.CT ├── Dark Vengeance.CT.ahk ├── Darkstone.CT ├── Darkstone.CT.ahk ├── Death Stranding.CT ├── Death Stranding.CT.ahk ├── Death's Door.CT ├── Death's Door.CT.ahk ├── DeusEx.CT ├── DeusEx.CT.ahk ├── Die by the Sword.CT ├── Die by the Sword.CT.ahk ├── Drakan.CT ├── Drakan.CT.ahk ├── Ecstatica 2.CT ├── Ecstatica 2.CT.ahk ├── Ecstatica.CT ├── Ecstatica.CT.ahk ├── Enclave.CT ├── Enclave.CT.ahk ├── Forsaken.CT ├── Forsaken.CT.ahk ├── God of War - Ragnarok.CT ├── God of War - Ragnarok.CT.ahk ├── God of War.CT ├── God of War.CT.ahk ├── Guacamelee 2.CT ├── Guacamelee 2.CT.ahk ├── Guacamelee!.CT ├── Guacamelee!.CT.ahk ├── Half Life 2.CT ├── Half Life 2.CT.ahk ├── Half Life.CT ├── Half Life.CT.ahk ├── Halo.CT ├── Halo.CT.ahk ├── Heart of Darkness.CT ├── Heart of Darkness.CT.ahk ├── Horace.CT ├── Horace.CT.ahk ├── Iconoclasts.CT ├── Iconoclasts.CT.ahk ├── Im Alive.CT ├── Im alive.CT.ahk ├── Inside.CT ├── Inside.CT.ahk ├── Iron Storm.CT ├── Iron Storm.CT.ahk ├── Jade Empire.CT ├── Jade Empire.CT.ahk ├── King Kong.CT ├── King Kong.CT.ahk ├── LIMBO.CT ├── Legacy of Kain - Blood Omen 2.CT ├── Legacy of Kain - Blood Omen 2.ct.ahk ├── Legacy of Kain - Blood Omen.CT ├── Legacy of Kain - Blood Omen.ct.ahk ├── Legacy of Kain - Defiance.CT ├── Legacy of Kain - Defiance.ct.ahk ├── Legacy of Kain - Soul Reaver 2.CT ├── Legacy of Kain - Soul Reaver 2.ct.ahk ├── Legacy of Kain - Soul Reaver.CT ├── Legacy of Kain - Soul Reaver.ct.ahk ├── Limbo.CT.ahk ├── MO - Astray.CT ├── MO - Astray.CT.ahk ├── MageSlayer.CT.ahk ├── Mageslayer.CT ├── Martian Gothic.CT ├── Martian Gothic.CT.ahk ├── Max Payne 2.CT ├── Max Payne 2.CT.ahk ├── Max Payne.CT ├── Max Payne.CT.ahk ├── Messiah.CT ├── Messiah.CT.ahk ├── Nox.CT ├── Nox.CT.ahk ├── NyxQuest - Kindred Spirits.CT ├── NyxQuest - Kindred Spirits.CT.ahk ├── Oddworld - Abe's Exoddus.CT ├── Oddworld - Abe's Exoddus.CT.ahk ├── Oddworld - Abe's Oddysse.CT ├── Oddworld - Abe's Oddysse.CT.ahk ├── Oddworld - Munch's Oddysee HD.CT ├── Oddworld - Munch's Oddysee HD.CT.ahk ├── Oddworld - Strangers Wrath HD.CT ├── Oddworld - Strangers Wrath HD.CT.ahk ├── Oni.CT ├── Oni.CT.ahk ├── Ori and the blind forest.CT ├── Ori and the blind forest.CT.ahk ├── Ori and the will of the wisps.CT ├── Ori and the will of the wisps.CT.ahk ├── Outlaws.CT ├── Outlaws.CT.ahk ├── Outwars.CT ├── Outwars.CT.ahk ├── Planescape Torment.CT ├── Planescape Torment.CT.ahk ├── Portal 2.CT ├── Portal 2.CT.ahk ├── Portal.CT ├── Portal.CT.ahk ├── Prince of Persia - SDLPoP.CT ├── Prince of Persia - SOT.CT ├── Prince of Persia - SOT.CT.ahk ├── Prince of Persia 3D.CT ├── Prince of Persia 3D.CT.ahk ├── Project Eden.CT ├── Project Eden.CT.ahk ├── Return to castle wolfenstein.CT ├── Return to castle wolfenstein.CT.ahk ├── Revenant.CT ├── Revenant.CT.ahk ├── Rune.CT ├── Rune.CT.ahk ├── SIGNALIS.CT ├── SIGNALIS.CT.ahk ├── Sanity - Aiken's Artifact.CT ├── Sanity - Aiken's Artifact.CT.ahk ├── Second Sight.CT ├── Second Sight.CT.ahk ├── Septerra Core.CT ├── Septerra Core.CT.ahk ├── Shogo.CT ├── Shogo.CT.ahk ├── Silver.CT ├── Silver.CT.ahk ├── Slave Zero.CT ├── Slave Zero.CT.ahk ├── Soulbringer.CT ├── Soulbringer.CT.ahk ├── Sphinx and the Cursed Mummy.CT ├── Sphinx and the Cursed Mummy.CT.ahk ├── Star Trek - Elite Force 2.CT ├── Star Trek - Elite Force 2.CT.ahk ├── Star Trek Deep Space Nine - The Fallen.CT ├── Star Trek Deep Space Nine - The Fallen.CT.ahk ├── Star Trek Klingon Honour Guard.CT ├── Star Trek Klingon Honour Guard.CT.ahk ├── Star Trek Voyager - Elite Force.CT ├── Star Trek Voyager - Elite Force.CT.ahk ├── Sudeki.CT ├── Sudeki.CT.ahk ├── The Entropy Centre.CT ├── The Swapper.CT ├── The Swapper.CT.ahk ├── The Talos principle.CT ├── The Talos principle.CT.ahk ├── The Wheel of Time.CT ├── The Wheel of Time.CT.ahk ├── The entropy centre.CT.ahk ├── The last of us - part 2.CT ├── The last of us - part 2.CT.ahk ├── The last of us.CT ├── The last of us.CT.ahk ├── Tomb Raider - Legend.CT ├── Tomb Raider - Legend.CT.ahk ├── Tomb Raider 2.CT ├── Tomb Raider 2.CT.ahk ├── Tomb Raider 3.CT ├── Tomb Raider 3.CT.ahk ├── Tomb Raider 4.CT ├── Tomb Raider 4.CT.ahk ├── Tomb Raider 5.CT ├── Tomb Raider 5.CT.ahk ├── Tomb Raider Anniversary.CT ├── Tomb Raider Anniversary.CT.ahk ├── Tomb Raider Reboot 2.CT ├── Tomb Raider Reboot 2.CT.ahk ├── Tomb Raider Reboot 3.CT ├── Tomb Raider Reboot 3.CT.ahk ├── Tomb Raider Reboot.CT ├── Tomb Raider Reboot.CT.ahk ├── Tomb Raider.CT ├── Tomb Raider.CT.ahk ├── Unravel Two.CT ├── Unravel Two.CT.ahk ├── Unravel.CT ├── Unravel.CT.ahk ├── Unreal Gold.CT ├── Unreal Gold.CT.ahk ├── Wolfenstein - 2009.CT ├── Wolfenstein - 2009.ct.ahk ├── Wolfenstein - The New Order.CT ├── Wolfenstein - The New Order.ct.ahk ├── Wolfenstein II - The New Colossus.CT ├── Wolfenstein II - The New Colossus.ct.ahk ├── onEscapee.CT └── onEscapee.CT.ahk ├── DeprecatedProfiles ├── CheatTables │ ├── Iconoclasts.CT │ ├── Iconoclasts.CT.ahk │ ├── Martian Gothic.CT │ ├── Martian Gothic.CT.ahk │ ├── Tomb Raider 2.CT │ ├── Tomb Raider 2.CT.ahk │ ├── Tomb Raider 3.CT │ ├── Tomb Raider 3.CT.ahk │ ├── Tomb Raider 4.CT │ ├── Tomb Raider 4.CT.ahk │ ├── Tomb Raider 5.CT │ ├── Tomb Raider 5.CT.ahk │ ├── Tomb Raider.CT │ └── Tomb Raider.CT.ahk ├── Help │ ├── Lba.txt │ ├── Lba2.txt │ ├── Martian.txt │ ├── Tomb2&3.txt │ ├── Tomb4&5.txt │ └── TombATI.txt ├── Profiles │ ├── Bladerunner.ini │ ├── Hyperblade.ini │ ├── Iconoclasts.ini │ ├── Little Big Adventure 2.ini │ ├── Little Big Adventure.ini │ ├── Martian Gothic.ini │ ├── Rainworld.ini │ ├── Sanitarium.ini │ ├── Shadow Man.ini │ ├── Take no prisoners.ini │ ├── Tomb Raider - Gold.ini │ ├── Tomb Raider 2 - Gold.ini │ ├── Tomb Raider 2.ini │ ├── Tomb Raider 3 - Gold.ini │ ├── Tomb Raider 3.ini │ ├── Tomb Raider 4.ini │ ├── Tomb Raider 5.ini │ ├── Tomb Raider.ini │ └── Zanzarah.ini └── Scripts │ ├── Lba.ahk │ ├── Sanitarium.ahk │ ├── Tomb2.ahk │ ├── Tomb4.ahk │ ├── TombRaider.ahk │ └── martian.ahk ├── GameProfiles ├── CheatTables │ ├── A Short Hike.CT │ ├── A Short Hike.CT.ahk │ ├── Alice.CT │ ├── Alice.CT.ahk │ ├── Alien Earth.CT │ ├── Alien Earth.CT.ahk │ ├── Aliens vs Predator 2.CT │ ├── Aliens vs Predator 2.CT.ahk │ ├── Aliens vs Predator Classic.CT │ ├── Aliens vs Predator Classic.CT.ahk │ ├── Alone in the Dark - The New Nightmare.CT │ ├── Alone in the Dark - The New Nightmare.CT.ahk │ ├── Anachronox.CT │ ├── Anachronox.CT.ahk │ ├── Another World - 20th Anniversary edition.CT │ ├── Another World - 20th Anniversary edition.CT.ahk │ ├── Bermuda Syndrome - SDL.CT │ ├── Bermuda Syndrome - SDL.CT.ahk │ ├── Bioshock 2.CT │ ├── Bioshock 2.CT.ahk │ ├── Bioshock Infinite.CT │ ├── Bioshock Infinite.CT.ahk │ ├── Bioshock.CT │ ├── Bioshock.CT.ahk │ ├── Blade of Darkness Classic.CT │ ├── Blade of Darkness Classic.CT.ahk │ ├── Braid.CT │ ├── Braid.CT.ahk │ ├── Brothers.CT │ ├── Brothers.CT.ahk │ ├── CEPluginLib.ahk │ ├── Castlevania - LoS - MoF.CT │ ├── Castlevania - LoS - MoF.CT.ahk │ ├── Castlevania - LoS - Ultimate Edition.CT │ ├── Castlevania - LoS - Ultimate Edition.CT.ahk │ ├── Castlevania - LoS 2.CT │ ├── Castlevania - LoS 2.CT.ahk │ ├── CheatEngine.ct │ ├── Contrast.CT │ ├── Contrast.CT.ahk │ ├── Control.CT │ ├── Control.ct.ahk │ ├── Crysis.CT │ ├── Crysis.CT.ahk │ ├── Crysis2.CT │ ├── Crysis2.CT.ahk │ ├── Dark Earth.CT │ ├── Dark Earth.CT.ahk │ ├── Dark Vengeance.CT │ ├── Dark Vengeance.CT.ahk │ ├── Darksiders 2.CT │ ├── Darksiders 2.CT.ahk │ ├── Darksiders 3.CT │ ├── Darksiders 3.CT.ahk │ ├── Darksiders.CT │ ├── Darksiders.CT.ahk │ ├── Darkstone.CT │ ├── Darkstone.CT.ahk │ ├── Death Stranding.CT │ ├── Death Stranding.CT.ahk │ ├── Death's Door.CT │ ├── Death's Door.CT.ahk │ ├── DeusEx - Human Revolution.CT │ ├── DeusEx - Human Revolution.CT.ahk │ ├── DeusEx - Invisible War.CT │ ├── DeusEx - Invisible War.CT.ahk │ ├── DeusEx - Mankind Divided.CT │ ├── DeusEx - Mankind Divided.CT.ahk │ ├── DeusEx.CT │ ├── DeusEx.CT.ahk │ ├── Die by the Sword.CT │ ├── Die by the Sword.CT.ahk │ ├── Drakan.CT │ ├── Drakan.CT.ahk │ ├── Ecstatica 2.CT │ ├── Ecstatica 2.CT.ahk │ ├── Ecstatica.CT │ ├── Ecstatica.CT.ahk │ ├── Enclave.CT │ ├── Enclave.CT.ahk │ ├── Forsaken.CT │ ├── Forsaken.CT.ahk │ ├── God of War - Ragnarok.CT │ ├── God of War - Ragnarok.CT.ahk │ ├── God of War.CT │ ├── God of War.CT.ahk │ ├── Guacamelee 2.CT │ ├── Guacamelee 2.CT.ahk │ ├── Guacamelee!.CT │ ├── Guacamelee!.CT.ahk │ ├── Half Life 2.CT │ ├── Half Life 2.CT.ahk │ ├── Half Life.CT │ ├── Half Life.CT.ahk │ ├── Halo - MCC.CT │ ├── Halo - MCC.CT.ahk │ ├── Halo.CT │ ├── Halo.CT.ahk │ ├── Heart of Darkness.CT │ ├── Heart of Darkness.CT.ahk │ ├── Horace.CT │ ├── Horace.CT.ahk │ ├── Im Alive.CT │ ├── Im alive.CT.ahk │ ├── Inside.CT │ ├── Inside.CT.ahk │ ├── Iron Storm.CT │ ├── Iron Storm.CT.ahk │ ├── Jade Empire.CT │ ├── Jade Empire.CT.ahk │ ├── King Kong.CT │ ├── King Kong.CT.ahk │ ├── LIMBO.CT │ ├── Legacy of Kain - Blood Omen 2.CT │ ├── Legacy of Kain - Blood Omen 2.ct.ahk │ ├── Legacy of Kain - Blood Omen.CT │ ├── Legacy of Kain - Blood Omen.ct.ahk │ ├── Legacy of Kain - Defiance.CT │ ├── Legacy of Kain - Defiance.ct.ahk │ ├── Legacy of Kain - Soul Reaver 2.CT │ ├── Legacy of Kain - Soul Reaver 2.ct.ahk │ ├── Legacy of Kain - Soul Reaver.CT │ ├── Legacy of Kain - Soul Reaver.ct.ahk │ ├── Limbo.CT.ahk │ ├── MO - Astray.CT │ ├── MO - Astray.CT.ahk │ ├── MageSlayer.CT.ahk │ ├── Mageslayer.CT │ ├── Max Payne 2.CT │ ├── Max Payne 2.CT.ahk │ ├── Max Payne.CT │ ├── Max Payne.CT.ahk │ ├── Messiah.CT │ ├── Messiah.CT.ahk │ ├── Nox.CT │ ├── Nox.CT.ahk │ ├── NyxQuest - Kindred Spirits.CT │ ├── NyxQuest - Kindred Spirits.CT.ahk │ ├── Oddworld - Abe's Exoddus.CT │ ├── Oddworld - Abe's Exoddus.CT.ahk │ ├── Oddworld - Abe's Oddysse.CT │ ├── Oddworld - Abe's Oddysse.CT.ahk │ ├── Oddworld - Munch's Oddysee HD.CT │ ├── Oddworld - Munch's Oddysee HD.CT.ahk │ ├── Oddworld - Strangers Wrath HD.CT │ ├── Oddworld - Strangers Wrath HD.CT.ahk │ ├── Oni.CT │ ├── Oni.CT.ahk │ ├── Ori and the blind forest.CT │ ├── Ori and the blind forest.CT.ahk │ ├── Ori and the will of the wisps.CT │ ├── Ori and the will of the wisps.CT.ahk │ ├── Outlaws.CT │ ├── Outlaws.CT.ahk │ ├── Outwars.CT │ ├── Outwars.CT.ahk │ ├── Planescape Torment.CT │ ├── Planescape Torment.CT.ahk │ ├── Portal 2.CT │ ├── Portal 2.CT.ahk │ ├── Portal.CT │ ├── Portal.CT.ahk │ ├── Prince of Persia - SDLPoP.CT │ ├── Prince of Persia - SOT.CT │ ├── Prince of Persia - SOT.CT.ahk │ ├── Prince of Persia - The Two Thrones.CT │ ├── Prince of Persia - The Two Thrones.CT.ahk │ ├── Prince of Persia - Warrior Within.CT │ ├── Prince of Persia - Warrior Within.CT.ahk │ ├── Prince of Persia 3D.CT │ ├── Prince of Persia 3D.CT.ahk │ ├── Project Eden.CT │ ├── Project Eden.CT.ahk │ ├── Return to castle wolfenstein.CT │ ├── Return to castle wolfenstein.CT.ahk │ ├── Revenant.CT │ ├── Revenant.CT.ahk │ ├── Rune.CT │ ├── Rune.CT.ahk │ ├── SIGNALIS.CT │ ├── SIGNALIS.CT.ahk │ ├── Sanity - Aiken's Artifact.CT │ ├── Sanity - Aiken's Artifact.CT.ahk │ ├── Second Sight.CT │ ├── Second Sight.CT.ahk │ ├── Septerra Core.CT │ ├── Septerra Core.CT.ahk │ ├── Shogo.CT │ ├── Shogo.CT.ahk │ ├── Silver.CT │ ├── Silver.CT.ahk │ ├── Slave Zero.CT │ ├── Slave Zero.CT.ahk │ ├── Soulbringer.CT │ ├── Soulbringer.CT.ahk │ ├── Sphinx and the Cursed Mummy.CT │ ├── Sphinx and the Cursed Mummy.CT.ahk │ ├── Star Trek - Elite Force 2.CT │ ├── Star Trek - Elite Force 2.CT.ahk │ ├── Star Trek Deep Space Nine - The Fallen.CT │ ├── Star Trek Deep Space Nine - The Fallen.CT.ahk │ ├── Star Trek Klingon Honour Guard.CT │ ├── Star Trek Klingon Honour Guard.CT.ahk │ ├── Star Trek Voyager - Elite Force.CT │ ├── Star Trek Voyager - Elite Force.CT.ahk │ ├── Sudeki.CT │ ├── Sudeki.CT.ahk │ ├── The Entropy Centre.CT │ ├── The Swapper.CT │ ├── The Swapper.CT.ahk │ ├── The Talos Principle 2.CT │ ├── The Talos principle 2.CT.ahk │ ├── The Talos principle.CT.ahk │ ├── The Wheel of Time.CT │ ├── The Wheel of Time.CT.ahk │ ├── The entropy centre.CT.ahk │ ├── The last of us - part 2.CT │ ├── The last of us - part 2.CT.ahk │ ├── The last of us.CT │ ├── The last of us.CT.ahk │ ├── The talos principle.CT │ ├── Tomb Raider - Legend.CT │ ├── Tomb Raider - Legend.CT.ahk │ ├── Tomb Raider - Underworld.CT │ ├── Tomb Raider - Underworld.CT.ahk │ ├── Tomb Raider Anniversary.CT │ ├── Tomb Raider Anniversary.CT.ahk │ ├── Tomb Raider Reboot 2.CT │ ├── Tomb Raider Reboot 2.CT.ahk │ ├── Tomb Raider Reboot 3.CT │ ├── Tomb Raider Reboot 3.CT.ahk │ ├── Tomb Raider Reboot.CT │ ├── Tomb Raider Reboot.CT.ahk │ ├── Transformers - Fall of Cybertron.CT │ ├── Transformers - Fall of Cybertron.CT.ahk │ ├── Transformers - War for Cybertron.CT │ ├── Transformers - War for Cybertron.CT.ahk │ ├── Unravel Two.CT │ ├── Unravel Two.CT.ahk │ ├── Unravel.CT │ ├── Unravel.CT.ahk │ ├── Unreal Gold.CT │ ├── Unreal Gold.CT.ahk │ ├── Wolfenstein - 2009.CT │ ├── Wolfenstein - 2009.ct.ahk │ ├── Wolfenstein - The New Order.CT │ ├── Wolfenstein - The New Order.ct.ahk │ ├── Wolfenstein II - The New Colossus.CT │ ├── Wolfenstein II - The New Colossus.ct.ahk │ ├── onEscapee.CT │ └── onEscapee.CT.ahk ├── Help │ ├── Alice.txt │ ├── Bermuda.txt │ ├── CPU.txt │ ├── DX10.txt │ ├── DX11.txt │ ├── DX12.txt │ ├── DX8.txt │ ├── DX9.txt │ ├── Dark Earth.txt │ ├── DeusEx.txt │ ├── Dino Crisis.txt │ ├── Eden.txt │ ├── Gl.txt │ ├── GlDefault.txt │ ├── HOD.txt │ ├── Home.txt │ ├── Home2.txt │ ├── HomeQt.txt │ ├── How to Choose.txt │ ├── IShield32.txt │ ├── IShield32.txt.txt │ ├── IamAlive.txt │ ├── Input.txt │ ├── InstallShield.txt │ ├── Kain.txt │ ├── Kega.txt │ ├── Main.txt │ ├── SOT.txt │ ├── Shogo.txt │ ├── Slave Zero.txt │ ├── SoulReaver.txt │ ├── SoulReaver2.txt │ ├── Sound.txt │ ├── VampireEngine.txt │ ├── Vulkan.txt │ ├── ddraw.txt │ ├── directdraw-0.10.18+.txt │ ├── directdraw.txt │ └── home.ico ├── Profiles │ ├── Alice - Remaster.ini │ ├── Alice.ini │ ├── Alien Earth.ini │ ├── Aliens vs Predator 2.ini │ ├── Aliens vs Predator classic - D3D9.ini │ ├── Alone in the Dark - The New Nightmare.ini │ ├── Anachronox.ini │ ├── Bermuda Syndrome - SDL.ini │ ├── Bioshock - D3D10.ini │ ├── Bioshock 2 - D3D10.ini │ ├── Blade of Darkness Classic - D3D7.ini │ ├── Blade of Darkness Classic - OpenGl.ini │ ├── Brothers.ini │ ├── Clive Barker's Undying.ini │ ├── Contrast.ini │ ├── Control - D3D11.ini │ ├── Control - D3D12.ini │ ├── Crysis - D3D10.ini │ ├── Crysis 2 - D3D11.ini │ ├── Dark Earth.ini │ ├── Dark vengeance.ini │ ├── Darkstone.ini │ ├── Death's Door - D3D11.ini │ ├── DeusEx - D3D7.ini │ ├── DeusEx - OpenGl.ini │ ├── Die by the sword.ini │ ├── Drakan.ini │ ├── Ecstatica 2.ini │ ├── Ecstatica.ini │ ├── Enclave - D3D8.ini │ ├── Forsaken.ini │ ├── Grim Fandango.ini │ ├── Guacamelee 2.ini │ ├── Guacamelee!.ini │ ├── Half Life - Blue Shift - OpenGl.ini │ ├── Half Life - OpenGl.ini │ ├── Half Life - Opposing Force - OpenGl.ini │ ├── Half Life 2 - Episode One.ini │ ├── Half Life 2 - Episode Two.ini │ ├── Half Life 2.ini │ ├── Halo.ini │ ├── Heart of Darkness.ini │ ├── Im Alive.ini │ ├── Inside.ini │ ├── Iron storm.ini │ ├── Jade empire.ini │ ├── Legacy of Kain - Blood Omen 2.ini │ ├── Legacy of Kain - Blood Omen.ini │ ├── Legacy of Kain - Defiance.ini │ ├── Legacy of Kain - Soul Reaver 2.ini │ ├── Legacy of Kain - Soul Reaver.ini │ ├── MageSlayer.ini │ ├── Max Payne 2.ini │ ├── Max Payne.ini │ ├── Messiah.ini │ ├── Never Alone.ini │ ├── Nox - D3D9.ini │ ├── Nox - DirectDraw.ini │ ├── Oddworld - Abe's Exoddus.ini │ ├── Oddworld - Abe's Oddysse.ini │ ├── Oddworld - Munch's Oddysee HD.ini │ ├── Oddworld - Strangers Wrath HD.ini │ ├── Oni.ini │ ├── Ori and the blind forest.ini │ ├── Ori and the will of the wisps.ini │ ├── Outlaws.ini │ ├── Outwars.ini │ ├── Planescape torment.ini │ ├── Portal 2.ini │ ├── Portal.ini │ ├── Prince of Persia - SDLPoP.ini │ ├── Prince of Persia - SOT.ini │ ├── Prince of Persia 3D.ini │ ├── Project Eden.ini │ ├── Return to Castle Wolfenstein.ini │ ├── Revenant - Hardware.ini │ ├── Revenant - Software.ini │ ├── Rune - D3D7.ini │ ├── Rune - OpenGl.ini │ ├── Sanity - Aiken's Artifact.ini │ ├── Second Sight.ini │ ├── Septerra Core.ini │ ├── Shogo.ini │ ├── Signalis.ini │ ├── Silver.ini │ ├── Slave Zero.ini │ ├── Soulbringer - DX6.ini │ ├── Sphinx and the Cursed Mummy.ini │ ├── Star Trek - Elite Force 2.ini │ ├── Star Trek Deep Space Nine - The Fallen - D3D7.ini │ ├── Star Trek Deep Space Nine - The Fallen - OpenGl.ini │ ├── Star Trek Klingon Honour Guard - OpenGl.ini │ ├── Star Trek Voyager - Elite Force.ini │ ├── Sudeki.ini │ ├── The Talos Principle - D3D11.ini │ ├── The Talos Principle - D3D12.ini │ ├── The Wheel of Time.ini │ ├── Tomb Raider - Anniversary.ini │ ├── Tomb Raider - Legend.ini │ ├── Unravel Two.ini │ ├── Unravel.ini │ ├── Unreal Gold - D3D7.ini │ ├── Unreal Gold - D3D8.ini │ ├── Unreal Gold - D3D9.ini │ ├── Wolfenstein - 2009.ini │ └── onEscapee.ini └── Scripts │ ├── Alice.ahk │ ├── BladeofDarknes.ahk │ ├── Dark Earth.ahk │ ├── Dark vengeance.ahk │ ├── DeusEx.ahk │ ├── Drakan.ahk │ ├── Enclave.ahk │ ├── Grim.ahk │ ├── HOD.ahk │ ├── Half life.ahk │ ├── InstallShield.ahk │ ├── KHG.ahk │ ├── Kain.ahk │ ├── MaxPayne.ahk │ ├── MaxPayne2.ahk │ ├── NOX.ahk │ ├── OutWars - D3D9.ahk │ ├── OutWars.ahk │ ├── Project Eden.ahk │ ├── Requiem.ahk │ ├── Revenant - D3D.ahk │ ├── Revenant - DDraw.ahk │ ├── SOT.ahk │ ├── Septerra Core.ahk │ ├── Shogo.ahk │ ├── Silver.ahk │ ├── SoulReaver.ahk │ ├── Undying.ahk │ ├── Unravel2.ahk │ ├── WheelofTime.ahk │ ├── Wolfenstein - 2009.ahk │ ├── die.ahk │ ├── ecstatica2.ahk │ ├── halo.ahk │ ├── imalive.ahk │ ├── pop3d.ahk │ ├── psiops.ahk │ └── soulbringer.ahk ├── Help ├── Alice.txt ├── Bermuda.txt ├── CPU.txt ├── DX10.txt ├── DX11.txt ├── DX12.txt ├── DX8.txt ├── DX9.txt ├── Dark Earth.txt ├── DeusEx.txt ├── Dino Crisis.txt ├── Eden.txt ├── Gl.txt ├── GlDefault.txt ├── HOD.txt ├── Home.txt ├── Home2.txt ├── HomeQt.txt ├── How to Choose.txt ├── IShield32.txt ├── IShield32.txt.txt ├── IamAlive.txt ├── Input.txt ├── InstallShield.txt ├── Kain.txt ├── Lba.txt ├── Lba2.txt ├── Main.txt ├── Martian.txt ├── SOT.txt ├── Sanitarium.txt ├── Shogo.txt ├── Slave Zero.txt ├── SoulReaver.txt ├── SoulReaver2.txt ├── Sound.txt ├── Tomb2&3.txt ├── Tomb4&5.txt ├── TombATI.txt ├── VampireEngine.txt ├── Vulkan.txt ├── ddraw.txt ├── directdraw-0.10.18+.txt ├── directdraw.txt └── home.ico ├── Profiles ├── Alice - Remaster.ini ├── Alice.ini ├── Alien Earth.ini ├── Aliens vs Predator 2.ini ├── Aliens vs Predator classic - D3D9.ini ├── Alone in the Dark - The New Nightmare.ini ├── Anachronox.ini ├── Bermuda Syndrome - SDL.ini ├── Bioshock - D3D10.ini ├── Bioshock 2 - D3D10.ini ├── Blade of Darkness Classic - D3D7.ini ├── Blade of Darkness Classic - OpenGl.ini ├── Bladerunner.ini ├── Brothers.ini ├── Clive Barker's Undying.ini ├── Contrast.ini ├── Control - D3D11.ini ├── Control - D3D12.ini ├── Crysis - D3D10.ini ├── Crysis 2 - D3D11.ini ├── Dark Earth.ini ├── Dark vengeance.ini ├── Darkstone.ini ├── Death's Door - D3D11.ini ├── DeusEx - D3D7.ini ├── DeusEx - OpenGl.ini ├── Die by the sword.ini ├── Drakan.ini ├── Ecstatica 2.ini ├── Ecstatica.ini ├── Enclave - D3D8.ini ├── Forsaken.ini ├── Grim Fandango.ini ├── Guacamelee 2.ini ├── Guacamelee!.ini ├── Half Life - Blue Shift - OpenGl.ini ├── Half Life - OpenGl.ini ├── Half Life - Opposing Force - OpenGl.ini ├── Half Life 2 - Episode One.ini ├── Half Life 2 - Episode Two.ini ├── Half Life 2.ini ├── Halo.ini ├── Heart of Darkness.ini ├── Hyperblade.ini ├── Iconoclasts.ini ├── Im Alive.ini ├── Inside.ini ├── Iron storm.ini ├── Jade empire.ini ├── Legacy of Kain - Blood Omen 2.ini ├── Legacy of Kain - Blood Omen.ini ├── Legacy of Kain - Defiance.ini ├── Legacy of Kain - Soul Reaver 2.ini ├── Legacy of Kain - Soul Reaver.ini ├── Little Big Adventure 2.ini ├── Little Big Adventure.ini ├── MageSlayer.ini ├── Martian Gothic.ini ├── Max Payne 2.ini ├── Max Payne.ini ├── Messiah.ini ├── Never Alone.ini ├── Nox - D3D9.ini ├── Nox - DirectDraw.ini ├── Oddworld - Abe's Exoddus.ini ├── Oddworld - Abe's Oddysse.ini ├── Oddworld - Munch's Oddysee HD.ini ├── Oddworld - Strangers Wrath HD.ini ├── Oni.ini ├── Ori and the blind forest.ini ├── Ori and the will of the wisps.ini ├── Outlaws.ini ├── Outwars.ini ├── Planescape torment.ini ├── Portal 2.ini ├── Portal.ini ├── Prince of Persia - SDLPoP.ini ├── Prince of Persia - SOT.ini ├── Prince of Persia 3D.ini ├── Project Eden.ini ├── Rainworld.ini ├── Return to Castle Wolfenstein.ini ├── Revenant - Hardware.ini ├── Revenant - Software.ini ├── Rune - D3D7.ini ├── Rune - OpenGl.ini ├── Sanitarium.ini ├── Sanity - Aiken's Artifact.ini ├── Second Sight.ini ├── Septerra Core.ini ├── Shadow Man.ini ├── Shogo.ini ├── Signalis.ini ├── Silver.ini ├── Slave Zero.ini ├── Soulbringer - DX6.ini ├── Sphinx and the Cursed Mummy.ini ├── Star Trek - Elite Force 2.ini ├── Star Trek Deep Space Nine - The Fallen - D3D7.ini ├── Star Trek Deep Space Nine - The Fallen - OpenGl.ini ├── Star Trek Klingon Honour Guard - OpenGl.ini ├── Star Trek Voyager - Elite Force.ini ├── Sudeki.ini ├── Take no prisoners.ini ├── The Talos Principle - D3D11.ini ├── The Talos Principle - D3D12.ini ├── The Wheel of Time.ini ├── Tomb Raider - Anniversary.ini ├── Tomb Raider - Gold.ini ├── Tomb Raider - Legend.ini ├── Tomb Raider 2 - Gold.ini ├── Tomb Raider 2.ini ├── Tomb Raider 3 - Gold.ini ├── Tomb Raider 3.ini ├── Tomb Raider 4.ini ├── Tomb Raider 5.ini ├── Tomb Raider.ini ├── Unravel Two.ini ├── Unravel.ini ├── Unreal Gold - D3D7.ini ├── Unreal Gold - D3D8.ini ├── Unreal Gold - D3D9.ini ├── Wolfenstein - 2009.ini ├── Zanzarah.ini └── onEscapee.ini ├── README.md ├── Scripts ├── Alice.ahk ├── BladeofDarknes.ahk ├── Dark Earth.ahk ├── Dark vengeance.ahk ├── DeusEx.ahk ├── Drakan.ahk ├── Enclave.ahk ├── Grim.ahk ├── HOD.ahk ├── Half life.ahk ├── InstallShield.ahk ├── KHG.ahk ├── Kain.ahk ├── Lba.ahk ├── MaxPayne.ahk ├── MaxPayne2.ahk ├── NOX.ahk ├── OutWars - D3D9.ahk ├── OutWars.ahk ├── Project Eden.ahk ├── Requiem.ahk ├── Revenant - D3D.ahk ├── Revenant - DDraw.ahk ├── SOT.ahk ├── Sanitarium.ahk ├── Septerra Core.ahk ├── Shogo.ahk ├── Silver.ahk ├── SoulReaver.ahk ├── Tomb2.ahk ├── Tomb4.ahk ├── TombRaider.ahk ├── Undying.ahk ├── Unravel2.ahk ├── WheelofTime.ahk ├── Wolfenstein - 2009.ahk ├── die.ahk ├── ecstatica2.ahk ├── halo.ahk ├── imalive.ahk ├── martian.ahk ├── pop3d.ahk ├── psiops.ahk └── soulbringer.ahk ├── Shaders ├── CS_5.0.hlsl ├── FSR_1_0 │ ├── ffx_a.h │ └── ffx_fsr1.h ├── HLSL_4.0.hlsl ├── PS_3.0.hlsl ├── xBRz.fx └── xBRz.glsl └── dlls ├── .vscode └── settings.json ├── CMakeLists.txt ├── Headers ├── 3DMigoto-Assembler.h ├── D3D11Hooks.h ├── D3D12Hooks.h ├── D3D12Utils.h ├── D3D8Hooks.h ├── D3D8HooksWine.h ├── D3D9Hooks.h ├── D3DHooks.h ├── D3DUtils.h ├── D3D_DDI.h ├── DDSurface.h ├── DInputHooks.h ├── DSoundHooks.h ├── Dbug.h ├── EZString.h ├── FileSystem.h ├── FilesSystemHooks.h ├── GDI_Hooks.h ├── GL_Hooks.h ├── Input.h ├── LibVlcPlayer.h ├── MouseHooks.h ├── OpenGL │ ├── glcorearb.h │ ├── glext.h │ ├── glxext.h │ └── wglext.h ├── Proxydll.h ├── Scalers.h ├── Sync.h ├── TextureScalers.h ├── WinMM_Hooks.h ├── Wine.Hooks.h ├── collections.h ├── d3dumddi.h ├── d3dx12.h ├── dllmain.h ├── sethooks.h └── xbrz.h ├── Includes ├── DX8SDK │ ├── d3d8.h │ ├── d3d8caps.h │ ├── d3d8types.h │ ├── d3dx8.h │ ├── d3dx8core.h │ ├── d3dx8effect.h │ ├── d3dx8math.h │ ├── d3dx8math.inl │ ├── d3dx8mesh.h │ ├── d3dx8shape.h │ ├── d3dx8tex.h │ └── dxfile.h ├── EAX │ ├── eax.h │ ├── eax2.h │ ├── eax3.h │ ├── eax4.h │ └── eax_presets.h ├── MS │ ├── ms_dinput.h │ └── ms_dsound.h ├── cheat-engine │ └── 7_5 │ │ ├── cepluginsdk.h │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ └── lualib.h ├── cpp-httplib │ └── httplib.h ├── nvapi │ ├── NvApiDriverSettings.h │ ├── R520-developer.zip │ ├── lib │ │ ├── nvapi.lib │ │ └── nvapi64.lib │ ├── nvHLSLExtns.h │ ├── nvHLSLExtnsInternal.h │ ├── nvShaderExtnEnums.h │ ├── nvapi.h │ ├── nvapi_lite_common.h │ ├── nvapi_lite_d3dext.h │ ├── nvapi_lite_salend.h │ ├── nvapi_lite_salstart.h │ ├── nvapi_lite_sli.h │ ├── nvapi_lite_stereo.h │ └── nvapi_lite_surround.h ├── vk_video │ ├── vulkan_video_codec_av1std.h │ ├── vulkan_video_codec_av1std_decode.h │ ├── vulkan_video_codec_h264std.h │ ├── vulkan_video_codec_h264std_decode.h │ ├── vulkan_video_codec_h264std_encode.h │ ├── vulkan_video_codec_h265std.h │ ├── vulkan_video_codec_h265std_decode.h │ ├── vulkan_video_codec_h265std_encode.h │ └── vulkan_video_codecs_common.h └── vulkan │ ├── vk_icd.h │ ├── vk_layer.h │ ├── vk_platform.h │ ├── vulkan.cppm │ ├── vulkan.h │ ├── vulkan.hpp │ ├── vulkan_android.h │ ├── vulkan_beta.h │ ├── vulkan_core.h │ ├── vulkan_directfb.h │ ├── vulkan_enums.hpp │ ├── vulkan_extension_inspection.hpp │ ├── vulkan_format_traits.hpp │ ├── vulkan_fuchsia.h │ ├── vulkan_funcs.hpp │ ├── vulkan_ggp.h │ ├── vulkan_handles.hpp │ ├── vulkan_hash.hpp │ ├── vulkan_hpp_macros.hpp │ ├── vulkan_ios.h │ ├── vulkan_macos.h │ ├── vulkan_metal.h │ ├── vulkan_raii.hpp │ ├── vulkan_screen.h │ ├── vulkan_shared.hpp │ ├── vulkan_static_assertions.hpp │ ├── vulkan_structs.hpp │ ├── vulkan_to_string.hpp │ ├── vulkan_vi.h │ ├── vulkan_video.hpp │ ├── vulkan_wayland.h │ ├── vulkan_win32.h │ ├── vulkan_xcb.h │ ├── vulkan_xlib.h │ └── vulkan_xlib_xrandr.h ├── LAYERS ├── DDRAW │ ├── Headers │ │ ├── Direct3D.h │ │ └── DirectDraw.h │ └── Sources │ │ ├── Direct3DDevice.cpp │ │ ├── Direct3DMaterial.cpp │ │ ├── Direct3DVertexBuffer.cpp │ │ ├── Direct3DViewport.cpp │ │ ├── DirectDraw.cpp │ │ ├── DirectDrawClipper.cpp │ │ ├── DirectDrawPalette.cpp │ │ └── DirectDrawSurface.cpp ├── DINPUT │ ├── Headers │ │ └── DirectInput.h │ └── Sources │ │ └── DirectInput.cpp ├── DSOUND │ ├── Headers │ │ ├── DirectSound.h │ │ └── eax_props.h │ └── Sources │ │ └── DirectSound.cpp └── LayersCommon.h ├── Simple-HTTP-Server ├── .gitignore ├── LICENSE ├── README.md ├── build.bat ├── headers │ ├── http_server.h │ ├── log.h │ └── utils.h ├── http_server.cpp ├── img │ └── http-icon.jpg ├── log.cpp ├── main.cpp ├── public │ └── index.html └── utils.cpp ├── Sources ├── 3DMigoto-Assembler.cpp ├── CheatEngine.cpp ├── CreateprocessHooks.cpp ├── D3D10Hooks.cpp ├── D3D10Utils.cpp ├── D3D11Hooks.cpp ├── D3D11Utils.cpp ├── D3D12Hooks.cpp ├── D3D12Utils.cpp ├── D3D8Hooks.cpp ├── D3D8HooksWine.cpp ├── D3D9Hooks.cpp ├── D3D9Utils.cpp ├── D3DHooks.cpp ├── D3DHooksEx.cpp ├── D3DUtils.cpp ├── DDSurface.c ├── DDSurfaceCpp.cpp ├── DInputHooks.cpp ├── DSoundHooks.cpp ├── Dbug.cpp ├── EZString.cpp ├── FileSystem.cpp ├── FilesSystemHooks.cpp ├── GDI_Hooks.cpp ├── GL_Hooks.cpp ├── HTTPSever.cpp ├── Input.cpp ├── LibVlcPlayer.cpp ├── MouseHooks.cpp ├── NVAPISettings.cpp ├── Proxydll.cpp ├── Scalers.cpp ├── Sockets.cpp ├── Sync.cpp ├── Test.cpp ├── TextureScalers.cpp ├── WinMM_Hooks.cpp ├── Wine.Hooks.cpp ├── XInput.cpp ├── collections.cpp ├── dllmain.cpp ├── sethooks.c ├── sigscan.c ├── virtualdisk.cpp └── xbrz.cpp ├── TestsAndTools.ipynb ├── minhook ├── .editorconfig ├── .gitignore ├── .vscode │ └── settings.json ├── AUTHORS.txt ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── dll_resources │ ├── MinHook.def │ └── MinHook.rc ├── include │ └── MinHook.h ├── minhook-1.3.2.zip └── src │ ├── HDE │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h │ ├── buffer.c │ ├── buffer.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── peixoto.def ├── peixoto.dll └── peixoto64.dll /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Ahk/AutoHotkey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/AutoHotkey.dll -------------------------------------------------------------------------------- /Ahk/AutoHotkey64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/AutoHotkey64.dll -------------------------------------------------------------------------------- /Ahk/Compile.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compile.ahk -------------------------------------------------------------------------------- /Ahk/Compile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compile.exe -------------------------------------------------------------------------------- /Ahk/Compiler/ANSI 32-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compiler/ANSI 32-bit.bin -------------------------------------------------------------------------------- /Ahk/Compiler/Ahk2Exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compiler/Ahk2Exe.exe -------------------------------------------------------------------------------- /Ahk/Compiler/AutoHotkeySC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compiler/AutoHotkeySC.bin -------------------------------------------------------------------------------- /Ahk/Compiler/Unicode 32-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compiler/Unicode 32-bit.bin -------------------------------------------------------------------------------- /Ahk/Compiler/Unicode 64-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Compiler/Unicode 64-bit.bin -------------------------------------------------------------------------------- /Ahk/CreateProcessHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/CreateProcessHooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D.hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D10.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D10.hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D11.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D11.hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D12.Hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D12.Hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D8.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D8.hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3D9.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3D9.hooks.ahk -------------------------------------------------------------------------------- /Ahk/D3DCompilers/x64/D3DX9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3DCompilers/x64/D3DX9_43.dll -------------------------------------------------------------------------------- /Ahk/D3DCompilers/x64/d3dx11_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3DCompilers/x64/d3dx11_43.dll -------------------------------------------------------------------------------- /Ahk/D3DCompilers/x86/D3DX9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3DCompilers/x86/D3DX9_43.dll -------------------------------------------------------------------------------- /Ahk/D3DCompilers/x86/d3dx11_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3DCompilers/x86/d3dx11_43.dll -------------------------------------------------------------------------------- /Ahk/D3DX9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/D3DX9.ahk -------------------------------------------------------------------------------- /Ahk/GUI/Cheats_smal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/Cheats_smal.png -------------------------------------------------------------------------------- /Ahk/GUI/GUIMain.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/GUIMain.ahk -------------------------------------------------------------------------------- /Ahk/GUI/GUIMain.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/GUIMain.exe -------------------------------------------------------------------------------- /Ahk/GUI/GameIcons/Anachronox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/GameIcons/Anachronox.png -------------------------------------------------------------------------------- /Ahk/GUI/GameIcons/shogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/GameIcons/shogo.png -------------------------------------------------------------------------------- /Ahk/GUI/PCGamingWiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/PCGamingWiki.svg -------------------------------------------------------------------------------- /Ahk/GUI/PCGamingWiki_wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/PCGamingWiki_wide.svg -------------------------------------------------------------------------------- /Ahk/GUI/TextureCompiler.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/TextureCompiler.ahk -------------------------------------------------------------------------------- /Ahk/GUI/bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/bad.svg -------------------------------------------------------------------------------- /Ahk/GUI/ce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/ce.svg -------------------------------------------------------------------------------- /Ahk/GUI/cheat engine.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/cheat engine.ahk -------------------------------------------------------------------------------- /Ahk/GUI/fix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/fix.svg -------------------------------------------------------------------------------- /Ahk/GUI/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/lib.txt -------------------------------------------------------------------------------- /Ahk/GUI/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/linux.svg -------------------------------------------------------------------------------- /Ahk/GUI/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/main.html -------------------------------------------------------------------------------- /Ahk/GUI/nfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/nfo.svg -------------------------------------------------------------------------------- /Ahk/GUI/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/play.svg -------------------------------------------------------------------------------- /Ahk/GUI/png/WINE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/WINE.ico -------------------------------------------------------------------------------- /Ahk/GUI/png/WINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/WINE.png -------------------------------------------------------------------------------- /Ahk/GUI/png/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/bad.png -------------------------------------------------------------------------------- /Ahk/GUI/png/dx12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/dx12.png -------------------------------------------------------------------------------- /Ahk/GUI/png/fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/fix.png -------------------------------------------------------------------------------- /Ahk/GUI/png/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/gamepad.png -------------------------------------------------------------------------------- /Ahk/GUI/png/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/home.png -------------------------------------------------------------------------------- /Ahk/GUI/png/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/imp.png -------------------------------------------------------------------------------- /Ahk/GUI/png/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/nfo.png -------------------------------------------------------------------------------- /Ahk/GUI/png/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/patreon.png -------------------------------------------------------------------------------- /Ahk/GUI/png/wine-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/wine-icon.png -------------------------------------------------------------------------------- /Ahk/GUI/png/wip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/png/wip-icon.png -------------------------------------------------------------------------------- /Ahk/GUI/shortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/shortcut.svg -------------------------------------------------------------------------------- /Ahk/GUI/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/star.svg -------------------------------------------------------------------------------- /Ahk/GUI/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/GUI/windows.svg -------------------------------------------------------------------------------- /Ahk/Injector.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Injector.ahk -------------------------------------------------------------------------------- /Ahk/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Injector.exe -------------------------------------------------------------------------------- /Ahk/Injector64.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Injector64.ahk -------------------------------------------------------------------------------- /Ahk/Injector64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Injector64.exe -------------------------------------------------------------------------------- /Ahk/Injector_common.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Injector_common.ahk -------------------------------------------------------------------------------- /Ahk/Input.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Input.log -------------------------------------------------------------------------------- /Ahk/InstallShield/InstallShield.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/InstallShield.ahk -------------------------------------------------------------------------------- /Ahk/InstallShield/InstallShield.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/InstallShield.ini -------------------------------------------------------------------------------- /Ahk/InstallShield/Is3Engine.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/Is3Engine.zip -------------------------------------------------------------------------------- /Ahk/InstallShield/Is5Launcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/Is5Launcher.zip -------------------------------------------------------------------------------- /Ahk/InstallShield/setupv3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/setupv3.exe -------------------------------------------------------------------------------- /Ahk/InstallShield/setupv5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/InstallShield/setupv5.exe -------------------------------------------------------------------------------- /Ahk/LayerTextSwap.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/LayerTextSwap.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DDSFile.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DDSFile.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DInputEmu.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DInputEmu.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/D3D11.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/D3D11.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/D3D8.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/D3D8.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/D3D9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/D3D9.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/Xinput.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/Xinput.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/ddraw.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/ddraw.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/dinput.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/dinput.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/dshow.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/dshow.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/dsound.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/dsound.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/DXGI.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/DXGI.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_DXGI.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_DXGI.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_d3d.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_d3d.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_d3d11.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_d3d11.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_d3d8.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_d3d8.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_d3d9.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_d3d9.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/_dshow.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/_dshow.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d10.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d10.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d11.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d11.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d11_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d11_1.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d11_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d11_2.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d11_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d11_3.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d11_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d11_4.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d8.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d8.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3d9.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3d9.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3dX8.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3dX8.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/d3dX9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/d3dX9.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/ddraw.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/ddraw.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dshow.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dshow.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dxgi1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dxgi1_2.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dxgi1_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dxgi1_3.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dxgi1_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dxgi1_4.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dxgi1_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dxgi1_5.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/dxgi1_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/dxgi1_6.h -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/gl.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/gl.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/DirectX/headers/glEXT.h.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/DirectX/headers/glEXT.h.ahk -------------------------------------------------------------------------------- /Ahk/Lib/FileHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/FileHooks.ahk -------------------------------------------------------------------------------- /Ahk/Lib/GUID.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/GUID.ahk -------------------------------------------------------------------------------- /Ahk/Lib/HDHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/HDHooks.ahk -------------------------------------------------------------------------------- /Ahk/Lib/Lib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/Lib.ahk -------------------------------------------------------------------------------- /Ahk/Lib/ShaderOverride8.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/ShaderOverride8.ahk -------------------------------------------------------------------------------- /Ahk/Lib/ShaderOverride9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/ShaderOverride9.ahk -------------------------------------------------------------------------------- /Ahk/Lib/SurfaceHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/SurfaceHooks.ahk -------------------------------------------------------------------------------- /Ahk/Lib/Syslinks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/Syslinks.ahk -------------------------------------------------------------------------------- /Ahk/Lib/TexSwapLib8.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/TexSwapLib8.ahk -------------------------------------------------------------------------------- /Ahk/Lib/TexSwapLib8Wine.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/TexSwapLib8Wine.ahk -------------------------------------------------------------------------------- /Ahk/Lib/TexSwapLib9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/TexSwapLib9.ahk -------------------------------------------------------------------------------- /Ahk/Lib/TexSwapLibGL.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/TexSwapLibGL.ahk -------------------------------------------------------------------------------- /Ahk/Lib/TextureManager.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/TextureManager.ahk -------------------------------------------------------------------------------- /Ahk/Lib/_Struct.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/_Struct.ahk -------------------------------------------------------------------------------- /Ahk/Lib/_TexSwapLib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/_TexSwapLib.ahk -------------------------------------------------------------------------------- /Ahk/Lib/_filesystem.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/_filesystem.ahk -------------------------------------------------------------------------------- /Ahk/Lib/ahkhook.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/ahkhook.ahk -------------------------------------------------------------------------------- /Ahk/Lib/ini.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/ini.ahk -------------------------------------------------------------------------------- /Ahk/Lib/memlib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/memlib.ahk -------------------------------------------------------------------------------- /Ahk/Lib/shell.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/shell.ahk -------------------------------------------------------------------------------- /Ahk/Lib/sizeof.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Lib/sizeof.ahk -------------------------------------------------------------------------------- /Ahk/MCI.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/MCI.ahk -------------------------------------------------------------------------------- /Ahk/Patches/CLOS2/dump1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CLOS2/dump1.bin -------------------------------------------------------------------------------- /Ahk/Patches/CLOS2/dump1.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CLOS2/dump1.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/_dump0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/_dump0.txt -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/_dump2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/_dump2.txt -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/dump0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/dump0.bin -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/dump0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/dump0.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/dump2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/dump2.bin -------------------------------------------------------------------------------- /Ahk/Patches/CMOF/dump2.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/CMOF/dump2.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/Dark Earth/InstallDarkEarth.bat: -------------------------------------------------------------------------------- 1 | i3comp.exe data.z *.* -d -i 2 | pause -------------------------------------------------------------------------------- /Ahk/Patches/Dark Earth/de_upd1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Dark Earth/de_upd1.zip -------------------------------------------------------------------------------- /Ahk/Patches/Dark Earth/i3comp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Dark Earth/i3comp.exe -------------------------------------------------------------------------------- /Ahk/Patches/IAmAlive_game/blur.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/IAmAlive_game/blur.bin -------------------------------------------------------------------------------- /Ahk/Patches/IAmAlive_game/blur.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/IAmAlive_game/blur.psh -------------------------------------------------------------------------------- /Ahk/Patches/IAmAlive_game/blur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/IAmAlive_game/blur.txt -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump0.bin -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump0.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump0.pshh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump0.pshh -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump0.txt -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump1.bin -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump1.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump1.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/JUNK/dump1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/JUNK/dump1.txt -------------------------------------------------------------------------------- /Ahk/Patches/Never_Alone/DOF-Far.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Never_Alone/DOF-Far.bin -------------------------------------------------------------------------------- /Ahk/Patches/Never_Alone/DOF-Far.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Never_Alone/DOF-Far.txt -------------------------------------------------------------------------------- /Ahk/Patches/Never_Alone/Shadows.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Never_Alone/Shadows.bin -------------------------------------------------------------------------------- /Ahk/Patches/Never_Alone/Shadows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Never_Alone/Shadows.txt -------------------------------------------------------------------------------- /Ahk/Patches/Onimusha/room404b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Onimusha/room404b.xsd -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/Bloom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/Bloom.bin -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/Bloom.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/Bloom.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/Bloom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/Bloom.txt -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFHigh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFHigh.bin -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFHigh.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFHigh.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFHigh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFHigh.txt -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFLow.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFLow.bin -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFLow.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFLow.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/Unravel/DOFLow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/Unravel/DOFLow.txt -------------------------------------------------------------------------------- /Ahk/Patches/UnravelTwo/DOF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/UnravelTwo/DOF.bin -------------------------------------------------------------------------------- /Ahk/Patches/UnravelTwo/DOF.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/UnravelTwo/DOF.hlsl -------------------------------------------------------------------------------- /Ahk/Patches/UnravelTwo/DOF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Patches/UnravelTwo/DOF.txt -------------------------------------------------------------------------------- /Ahk/Server/InstallShield.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/InstallShield.ahk -------------------------------------------------------------------------------- /Ahk/Server/Server.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/Server.ahk -------------------------------------------------------------------------------- /Ahk/Server/Server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/Server.exe -------------------------------------------------------------------------------- /Ahk/Server/cheat engine.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/cheat engine.ahk -------------------------------------------------------------------------------- /Ahk/Server/css/__stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/css/__stylesheet.css -------------------------------------------------------------------------------- /Ahk/Server/css/__stylesheet.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/css/__stylesheet.css.map -------------------------------------------------------------------------------- /Ahk/Server/css/__stylesheet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/css/__stylesheet.scss -------------------------------------------------------------------------------- /Ahk/Server/css/_bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/css/_bootstrap -------------------------------------------------------------------------------- /Ahk/Server/css/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/css/stylesheet.css -------------------------------------------------------------------------------- /Ahk/Server/html/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/html/base.html -------------------------------------------------------------------------------- /Ahk/Server/html/config-ini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/html/config-ini.html -------------------------------------------------------------------------------- /Ahk/Server/html/games-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/html/games-list.html -------------------------------------------------------------------------------- /Ahk/Server/html/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/html/home.html -------------------------------------------------------------------------------- /Ahk/Server/img/Cheats_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/Cheats_small.png -------------------------------------------------------------------------------- /Ahk/Server/img/WINE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/WINE.png -------------------------------------------------------------------------------- /Ahk/Server/img/bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/bad.png -------------------------------------------------------------------------------- /Ahk/Server/img/bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/bad.svg -------------------------------------------------------------------------------- /Ahk/Server/img/ce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/ce.svg -------------------------------------------------------------------------------- /Ahk/Server/img/dx12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/dx12.png -------------------------------------------------------------------------------- /Ahk/Server/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/favicon.ico -------------------------------------------------------------------------------- /Ahk/Server/img/fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/fix.png -------------------------------------------------------------------------------- /Ahk/Server/img/fix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/fix.svg -------------------------------------------------------------------------------- /Ahk/Server/img/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/gamepad.png -------------------------------------------------------------------------------- /Ahk/Server/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/home.png -------------------------------------------------------------------------------- /Ahk/Server/img/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/imp.png -------------------------------------------------------------------------------- /Ahk/Server/img/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/nfo.png -------------------------------------------------------------------------------- /Ahk/Server/img/nfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/nfo.svg -------------------------------------------------------------------------------- /Ahk/Server/img/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/patreon.png -------------------------------------------------------------------------------- /Ahk/Server/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/star.svg -------------------------------------------------------------------------------- /Ahk/Server/img/wine-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/wine-icon.png -------------------------------------------------------------------------------- /Ahk/Server/img/wip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/img/wip-icon.png -------------------------------------------------------------------------------- /Ahk/Server/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Server/lib.txt -------------------------------------------------------------------------------- /Ahk/Shaders/CS_5.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/CS_5.0.hlsl -------------------------------------------------------------------------------- /Ahk/Shaders/FSR_1_0/ffx_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/FSR_1_0/ffx_a.h -------------------------------------------------------------------------------- /Ahk/Shaders/FSR_1_0/ffx_fsr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/FSR_1_0/ffx_fsr1.h -------------------------------------------------------------------------------- /Ahk/Shaders/HLSL_4.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/HLSL_4.0.hlsl -------------------------------------------------------------------------------- /Ahk/Shaders/PS_3.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/PS_3.0.hlsl -------------------------------------------------------------------------------- /Ahk/Shaders/xBRz.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/xBRz.fx -------------------------------------------------------------------------------- /Ahk/Shaders/xBRz.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Shaders/xBRz.glsl -------------------------------------------------------------------------------- /Ahk/Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/Todo.txt -------------------------------------------------------------------------------- /Ahk/WinAPI.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/WinAPI.hooks.ahk -------------------------------------------------------------------------------- /Ahk/WinMM.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/WinMM.log -------------------------------------------------------------------------------- /Ahk/d3d_hooks.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/d3d_hooks.log -------------------------------------------------------------------------------- /Ahk/dinput.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/dinput.hooks.ahk -------------------------------------------------------------------------------- /Ahk/dshow.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/dshow.hooks.ahk -------------------------------------------------------------------------------- /Ahk/dsound.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/dsound.hooks.ahk -------------------------------------------------------------------------------- /Ahk/error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/error.log -------------------------------------------------------------------------------- /Ahk/exlib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/exlib.ahk -------------------------------------------------------------------------------- /Ahk/gl.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/gl.hooks.ahk -------------------------------------------------------------------------------- /Ahk/last: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/last -------------------------------------------------------------------------------- /Ahk/main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/main.ini -------------------------------------------------------------------------------- /Ahk/peixoto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/peixoto.dll -------------------------------------------------------------------------------- /Ahk/remote_lib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/remote_lib.ahk -------------------------------------------------------------------------------- /Ahk/src/CreateProcessHooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/CreateProcessHooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy/D3D.hooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy/D3D.hooks.ahk -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy/HDHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy/HDHooks.ahk -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy/SurfaceHooks.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy/SurfaceHooks.ahk -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy/_TexSwapLib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy/_TexSwapLib.ahk -------------------------------------------------------------------------------- /Ahk/src/D3D.Legacy/ddraw.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.Legacy/ddraw.ahk -------------------------------------------------------------------------------- /Ahk/src/D3D.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3D11.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D11.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3D12.hooks.txt: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /Ahk/src/D3D8.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D8.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3D9.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3D9.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/D3DX9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/D3DX9.txt -------------------------------------------------------------------------------- /Ahk/src/D3D_DDI.Hooks.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ahk/src/MCI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/MCI.txt -------------------------------------------------------------------------------- /Ahk/src/WinAPI.Hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/WinAPI.Hooks.txt -------------------------------------------------------------------------------- /Ahk/src/Xinput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/Xinput.txt -------------------------------------------------------------------------------- /Ahk/src/dinput.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/dinput.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/dshow.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/dshow.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/dsound.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/dsound.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/exlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/exlib.txt -------------------------------------------------------------------------------- /Ahk/src/gl.hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/gl.hooks.txt -------------------------------------------------------------------------------- /Ahk/src/injector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/injector.txt -------------------------------------------------------------------------------- /Ahk/src/injector64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/injector64.txt -------------------------------------------------------------------------------- /Ahk/src/remote_lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/src/remote_lib.txt -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/d3d10.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/d3d11.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/d3d8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/d3d8.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/d3d9.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/ddraw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/ddraw.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/SysWOW64/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/SysWOW64/dxgi.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/d3d10.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/d3d11.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/d3d8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/d3d8.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/d3d9.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/ddraw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/ddraw.dll -------------------------------------------------------------------------------- /Ahk/wined3d/10_0/System32/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/10_0/System32/dxgi.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/d3d10.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/d3d11.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/d3d8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/d3d8.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/d3d9.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/ddraw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/ddraw.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/SysWOW64/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/SysWOW64/dxgi.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/d3d10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/d3d10.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/d3d11.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/d3d8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/d3d8.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/d3d9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/d3d9.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/ddraw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/ddraw.dll -------------------------------------------------------------------------------- /Ahk/wined3d/9_0/System32/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Ahk/wined3d/9_0/System32/dxgi.dll -------------------------------------------------------------------------------- /CheatTables/A Short Hike.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/A Short Hike.CT -------------------------------------------------------------------------------- /CheatTables/A Short Hike.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/A Short Hike.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Alice.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Alice.CT -------------------------------------------------------------------------------- /CheatTables/Alice.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Alice.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Alien Earth.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Alien Earth.CT -------------------------------------------------------------------------------- /CheatTables/Alien Earth.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Alien Earth.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Aliens vs Predator 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Aliens vs Predator 2.CT -------------------------------------------------------------------------------- /CheatTables/Anachronox.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Anachronox.CT -------------------------------------------------------------------------------- /CheatTables/Anachronox.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Anachronox.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Bioshock.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Bioshock.CT -------------------------------------------------------------------------------- /CheatTables/Bioshock.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Bioshock.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Braid.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Braid.CT -------------------------------------------------------------------------------- /CheatTables/Braid.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Braid.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Brothers.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Brothers.CT -------------------------------------------------------------------------------- /CheatTables/Brothers.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Brothers.CT.ahk -------------------------------------------------------------------------------- /CheatTables/CEPluginLib.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/CEPluginLib.ahk -------------------------------------------------------------------------------- /CheatTables/CheatEngine.ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/CheatEngine.ct -------------------------------------------------------------------------------- /CheatTables/Contrast.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Contrast.CT -------------------------------------------------------------------------------- /CheatTables/Contrast.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Contrast.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Control.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Control.CT -------------------------------------------------------------------------------- /CheatTables/Control.ct.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Control.ct.ahk -------------------------------------------------------------------------------- /CheatTables/Crysis.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Crysis.CT -------------------------------------------------------------------------------- /CheatTables/Crysis.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Crysis.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Crysis2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Crysis2.CT -------------------------------------------------------------------------------- /CheatTables/Crysis2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Crysis2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Dark Earth.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Dark Earth.CT -------------------------------------------------------------------------------- /CheatTables/Dark Earth.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Dark Earth.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Dark Vengeance.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Dark Vengeance.CT -------------------------------------------------------------------------------- /CheatTables/Dark Vengeance.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Dark Vengeance.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Darkstone.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Darkstone.CT -------------------------------------------------------------------------------- /CheatTables/Darkstone.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Darkstone.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Death Stranding.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Death Stranding.CT -------------------------------------------------------------------------------- /CheatTables/Death Stranding.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Death Stranding.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Death's Door.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Death's Door.CT -------------------------------------------------------------------------------- /CheatTables/Death's Door.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Death's Door.CT.ahk -------------------------------------------------------------------------------- /CheatTables/DeusEx.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/DeusEx.CT -------------------------------------------------------------------------------- /CheatTables/DeusEx.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/DeusEx.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Die by the Sword.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Die by the Sword.CT -------------------------------------------------------------------------------- /CheatTables/Die by the Sword.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Die by the Sword.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Drakan.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Drakan.CT -------------------------------------------------------------------------------- /CheatTables/Drakan.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Drakan.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Ecstatica 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Ecstatica 2.CT -------------------------------------------------------------------------------- /CheatTables/Ecstatica 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Ecstatica 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Ecstatica.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Ecstatica.CT -------------------------------------------------------------------------------- /CheatTables/Ecstatica.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Ecstatica.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Enclave.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Enclave.CT -------------------------------------------------------------------------------- /CheatTables/Enclave.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Enclave.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Forsaken.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Forsaken.CT -------------------------------------------------------------------------------- /CheatTables/Forsaken.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Forsaken.CT.ahk -------------------------------------------------------------------------------- /CheatTables/God of War.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/God of War.CT -------------------------------------------------------------------------------- /CheatTables/God of War.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/God of War.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Guacamelee 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Guacamelee 2.CT -------------------------------------------------------------------------------- /CheatTables/Guacamelee 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Guacamelee 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Guacamelee!.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Guacamelee!.CT -------------------------------------------------------------------------------- /CheatTables/Guacamelee!.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Guacamelee!.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Half Life 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Half Life 2.CT -------------------------------------------------------------------------------- /CheatTables/Half Life 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Half Life 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Half Life.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Half Life.CT -------------------------------------------------------------------------------- /CheatTables/Half Life.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Half Life.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Halo.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Halo.CT -------------------------------------------------------------------------------- /CheatTables/Halo.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Halo.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Heart of Darkness.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Heart of Darkness.CT -------------------------------------------------------------------------------- /CheatTables/Horace.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Horace.CT -------------------------------------------------------------------------------- /CheatTables/Horace.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Horace.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Iconoclasts.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Iconoclasts.CT -------------------------------------------------------------------------------- /CheatTables/Iconoclasts.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Iconoclasts.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Im Alive.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Im Alive.CT -------------------------------------------------------------------------------- /CheatTables/Im alive.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Im alive.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Inside.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Inside.CT -------------------------------------------------------------------------------- /CheatTables/Inside.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Inside.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Iron Storm.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Iron Storm.CT -------------------------------------------------------------------------------- /CheatTables/Iron Storm.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Iron Storm.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Jade Empire.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Jade Empire.CT -------------------------------------------------------------------------------- /CheatTables/Jade Empire.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Jade Empire.CT.ahk -------------------------------------------------------------------------------- /CheatTables/King Kong.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/King Kong.CT -------------------------------------------------------------------------------- /CheatTables/King Kong.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/King Kong.CT.ahk -------------------------------------------------------------------------------- /CheatTables/LIMBO.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/LIMBO.CT -------------------------------------------------------------------------------- /CheatTables/Limbo.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Limbo.CT.ahk -------------------------------------------------------------------------------- /CheatTables/MO - Astray.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/MO - Astray.CT -------------------------------------------------------------------------------- /CheatTables/MO - Astray.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/MO - Astray.CT.ahk -------------------------------------------------------------------------------- /CheatTables/MageSlayer.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/MageSlayer.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Mageslayer.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Mageslayer.CT -------------------------------------------------------------------------------- /CheatTables/Martian Gothic.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Martian Gothic.CT -------------------------------------------------------------------------------- /CheatTables/Martian Gothic.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Martian Gothic.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Max Payne 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Max Payne 2.CT -------------------------------------------------------------------------------- /CheatTables/Max Payne 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Max Payne 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Max Payne.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Max Payne.CT -------------------------------------------------------------------------------- /CheatTables/Max Payne.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Max Payne.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Messiah.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Messiah.CT -------------------------------------------------------------------------------- /CheatTables/Messiah.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Messiah.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Nox.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Nox.CT -------------------------------------------------------------------------------- /CheatTables/Nox.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Nox.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Oni.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Oni.CT -------------------------------------------------------------------------------- /CheatTables/Oni.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Oni.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Outlaws.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Outlaws.CT -------------------------------------------------------------------------------- /CheatTables/Outlaws.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Outlaws.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Outwars.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Outwars.CT -------------------------------------------------------------------------------- /CheatTables/Outwars.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Outwars.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Planescape Torment.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Planescape Torment.CT -------------------------------------------------------------------------------- /CheatTables/Portal 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Portal 2.CT -------------------------------------------------------------------------------- /CheatTables/Portal 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Portal 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Portal.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Portal.CT -------------------------------------------------------------------------------- /CheatTables/Portal.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Portal.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Prince of Persia 3D.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Prince of Persia 3D.CT -------------------------------------------------------------------------------- /CheatTables/Project Eden.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Project Eden.CT -------------------------------------------------------------------------------- /CheatTables/Project Eden.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Project Eden.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Revenant.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Revenant.CT -------------------------------------------------------------------------------- /CheatTables/Revenant.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Revenant.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Rune.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Rune.CT -------------------------------------------------------------------------------- /CheatTables/Rune.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Rune.CT.ahk -------------------------------------------------------------------------------- /CheatTables/SIGNALIS.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/SIGNALIS.CT -------------------------------------------------------------------------------- /CheatTables/SIGNALIS.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/SIGNALIS.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Second Sight.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Second Sight.CT -------------------------------------------------------------------------------- /CheatTables/Second Sight.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Second Sight.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Septerra Core.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Septerra Core.CT -------------------------------------------------------------------------------- /CheatTables/Septerra Core.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Septerra Core.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Shogo.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Shogo.CT -------------------------------------------------------------------------------- /CheatTables/Shogo.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Shogo.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Silver.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Silver.CT -------------------------------------------------------------------------------- /CheatTables/Silver.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Silver.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Slave Zero.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Slave Zero.CT -------------------------------------------------------------------------------- /CheatTables/Slave Zero.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Slave Zero.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Soulbringer.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Soulbringer.CT -------------------------------------------------------------------------------- /CheatTables/Soulbringer.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Soulbringer.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Sudeki.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Sudeki.CT -------------------------------------------------------------------------------- /CheatTables/Sudeki.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Sudeki.CT.ahk -------------------------------------------------------------------------------- /CheatTables/The Entropy Centre.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The Entropy Centre.CT -------------------------------------------------------------------------------- /CheatTables/The Swapper.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The Swapper.CT -------------------------------------------------------------------------------- /CheatTables/The Swapper.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The Swapper.CT.ahk -------------------------------------------------------------------------------- /CheatTables/The Talos principle.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The Talos principle.CT -------------------------------------------------------------------------------- /CheatTables/The Wheel of Time.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The Wheel of Time.CT -------------------------------------------------------------------------------- /CheatTables/The last of us.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The last of us.CT -------------------------------------------------------------------------------- /CheatTables/The last of us.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/The last of us.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Tomb Raider - Legend.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider - Legend.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 2.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 2.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 2.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 3.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 3.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 3.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 3.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 4.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 4.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 4.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 4.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 5.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 5.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider 5.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider 5.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Tomb Raider Reboot 2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider Reboot 2.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider Reboot 3.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider Reboot 3.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider Reboot.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider Reboot.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider.CT -------------------------------------------------------------------------------- /CheatTables/Tomb Raider.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Tomb Raider.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Unravel Two.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unravel Two.CT -------------------------------------------------------------------------------- /CheatTables/Unravel Two.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unravel Two.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Unravel.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unravel.CT -------------------------------------------------------------------------------- /CheatTables/Unravel.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unravel.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Unreal Gold.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unreal Gold.CT -------------------------------------------------------------------------------- /CheatTables/Unreal Gold.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Unreal Gold.CT.ahk -------------------------------------------------------------------------------- /CheatTables/Wolfenstein - 2009.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/Wolfenstein - 2009.CT -------------------------------------------------------------------------------- /CheatTables/onEscapee.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/onEscapee.CT -------------------------------------------------------------------------------- /CheatTables/onEscapee.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/CheatTables/onEscapee.CT.ahk -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/Lba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/Lba.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/Lba2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/Lba2.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/Martian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/Martian.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/Tomb2&3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/Tomb2&3.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/Tomb4&5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/Tomb4&5.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Help/TombATI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Help/TombATI.txt -------------------------------------------------------------------------------- /DeprecatedProfiles/Scripts/Lba.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/DeprecatedProfiles/Scripts/Lba.ahk -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Alice.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Alice.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Braid.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Braid.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Control.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Control.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Crysis.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Crysis.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Crysis2.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Crysis2.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/DeusEx.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/DeusEx.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Drakan.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Drakan.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Enclave.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Enclave.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Halo.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Halo.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Horace.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Horace.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Inside.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Inside.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/LIMBO.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/LIMBO.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Messiah.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Messiah.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Nox.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Nox.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Nox.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Nox.CT.ahk -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Oni.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Oni.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Oni.CT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Oni.CT.ahk -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Outlaws.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Outlaws.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Outwars.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Outwars.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Portal.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Portal.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Rune.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Rune.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Shogo.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Shogo.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Silver.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Silver.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Sudeki.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Sudeki.CT -------------------------------------------------------------------------------- /GameProfiles/CheatTables/Unravel.CT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/CheatTables/Unravel.CT -------------------------------------------------------------------------------- /GameProfiles/Help/Alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Alice.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Bermuda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Bermuda.txt -------------------------------------------------------------------------------- /GameProfiles/Help/CPU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/CPU.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DX10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DX10.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DX11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DX11.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DX12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DX12.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DX8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DX8.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DX9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DX9.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Dark Earth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Dark Earth.txt -------------------------------------------------------------------------------- /GameProfiles/Help/DeusEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/DeusEx.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Dino Crisis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Dino Crisis.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Eden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Eden.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Gl.txt -------------------------------------------------------------------------------- /GameProfiles/Help/GlDefault.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/GlDefault.txt -------------------------------------------------------------------------------- /GameProfiles/Help/HOD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/HOD.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Home.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Home2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Home2.txt -------------------------------------------------------------------------------- /GameProfiles/Help/HomeQt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/HomeQt.txt -------------------------------------------------------------------------------- /GameProfiles/Help/How to Choose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/How to Choose.txt -------------------------------------------------------------------------------- /GameProfiles/Help/IShield32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/IShield32.txt -------------------------------------------------------------------------------- /GameProfiles/Help/IShield32.txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/IShield32.txt.txt -------------------------------------------------------------------------------- /GameProfiles/Help/IamAlive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/IamAlive.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Input.txt -------------------------------------------------------------------------------- /GameProfiles/Help/InstallShield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/InstallShield.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Kain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Kain.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Kega.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Kega.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Main.txt -------------------------------------------------------------------------------- /GameProfiles/Help/SOT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/SOT.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Shogo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Shogo.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Slave Zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Slave Zero.txt -------------------------------------------------------------------------------- /GameProfiles/Help/SoulReaver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/SoulReaver.txt -------------------------------------------------------------------------------- /GameProfiles/Help/SoulReaver2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/SoulReaver2.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Sound.txt -------------------------------------------------------------------------------- /GameProfiles/Help/VampireEngine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/VampireEngine.txt -------------------------------------------------------------------------------- /GameProfiles/Help/Vulkan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/Vulkan.txt -------------------------------------------------------------------------------- /GameProfiles/Help/ddraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/ddraw.txt -------------------------------------------------------------------------------- /GameProfiles/Help/directdraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/directdraw.txt -------------------------------------------------------------------------------- /GameProfiles/Help/home.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Help/home.ico -------------------------------------------------------------------------------- /GameProfiles/Profiles/Alice.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Alice.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Brothers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Brothers.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Contrast.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Contrast.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Darkstone.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Darkstone.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Drakan.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Drakan.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Ecstatica.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Ecstatica.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Forsaken.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Forsaken.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Halo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Halo.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Im Alive.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Im Alive.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Inside.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Inside.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Max Payne.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Max Payne.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Messiah.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Messiah.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Oni.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Oni.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Outlaws.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Outlaws.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Outwars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Outwars.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Portal 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Portal 2.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Portal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Portal.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Shogo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Shogo.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Signalis.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Signalis.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Silver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Silver.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Sudeki.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Sudeki.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/Unravel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/Unravel.ini -------------------------------------------------------------------------------- /GameProfiles/Profiles/onEscapee.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Profiles/onEscapee.ini -------------------------------------------------------------------------------- /GameProfiles/Scripts/Alice.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Alice.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Dark Earth.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Dark Earth.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/DeusEx.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/DeusEx.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Drakan.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Drakan.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Enclave.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Enclave.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Grim.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Grim.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/HOD.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/HOD.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Half life.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Half life.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/KHG.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/KHG.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Kain.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Kain.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/MaxPayne.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/MaxPayne.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/MaxPayne2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/MaxPayne2.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/NOX.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/NOX.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/OutWars.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/OutWars.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Requiem.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Requiem.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/SOT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/SOT.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Shogo.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Shogo.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Silver.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Silver.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/SoulReaver.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/SoulReaver.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Undying.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Undying.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/Unravel2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/Unravel2.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/die.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/die.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/ecstatica2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/ecstatica2.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/halo.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/halo.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/imalive.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/imalive.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/pop3d.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/pop3d.ahk -------------------------------------------------------------------------------- /GameProfiles/Scripts/psiops.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/GameProfiles/Scripts/psiops.ahk -------------------------------------------------------------------------------- /Help/Alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Alice.txt -------------------------------------------------------------------------------- /Help/Bermuda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Bermuda.txt -------------------------------------------------------------------------------- /Help/CPU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/CPU.txt -------------------------------------------------------------------------------- /Help/DX10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DX10.txt -------------------------------------------------------------------------------- /Help/DX11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DX11.txt -------------------------------------------------------------------------------- /Help/DX12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DX12.txt -------------------------------------------------------------------------------- /Help/DX8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DX8.txt -------------------------------------------------------------------------------- /Help/DX9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DX9.txt -------------------------------------------------------------------------------- /Help/Dark Earth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Dark Earth.txt -------------------------------------------------------------------------------- /Help/DeusEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/DeusEx.txt -------------------------------------------------------------------------------- /Help/Dino Crisis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Dino Crisis.txt -------------------------------------------------------------------------------- /Help/Eden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Eden.txt -------------------------------------------------------------------------------- /Help/Gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Gl.txt -------------------------------------------------------------------------------- /Help/GlDefault.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/GlDefault.txt -------------------------------------------------------------------------------- /Help/HOD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/HOD.txt -------------------------------------------------------------------------------- /Help/Home.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Home.txt -------------------------------------------------------------------------------- /Help/Home2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Home2.txt -------------------------------------------------------------------------------- /Help/HomeQt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/HomeQt.txt -------------------------------------------------------------------------------- /Help/How to Choose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/How to Choose.txt -------------------------------------------------------------------------------- /Help/IShield32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/IShield32.txt -------------------------------------------------------------------------------- /Help/IShield32.txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/IShield32.txt.txt -------------------------------------------------------------------------------- /Help/IamAlive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/IamAlive.txt -------------------------------------------------------------------------------- /Help/Input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Input.txt -------------------------------------------------------------------------------- /Help/InstallShield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/InstallShield.txt -------------------------------------------------------------------------------- /Help/Kain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Kain.txt -------------------------------------------------------------------------------- /Help/Lba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Lba.txt -------------------------------------------------------------------------------- /Help/Lba2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Lba2.txt -------------------------------------------------------------------------------- /Help/Main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Main.txt -------------------------------------------------------------------------------- /Help/Martian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Martian.txt -------------------------------------------------------------------------------- /Help/SOT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/SOT.txt -------------------------------------------------------------------------------- /Help/Sanitarium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Sanitarium.txt -------------------------------------------------------------------------------- /Help/Shogo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Shogo.txt -------------------------------------------------------------------------------- /Help/Slave Zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Slave Zero.txt -------------------------------------------------------------------------------- /Help/SoulReaver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/SoulReaver.txt -------------------------------------------------------------------------------- /Help/SoulReaver2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/SoulReaver2.txt -------------------------------------------------------------------------------- /Help/Sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Sound.txt -------------------------------------------------------------------------------- /Help/Tomb2&3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Tomb2&3.txt -------------------------------------------------------------------------------- /Help/Tomb4&5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Tomb4&5.txt -------------------------------------------------------------------------------- /Help/TombATI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/TombATI.txt -------------------------------------------------------------------------------- /Help/VampireEngine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/VampireEngine.txt -------------------------------------------------------------------------------- /Help/Vulkan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/Vulkan.txt -------------------------------------------------------------------------------- /Help/ddraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/ddraw.txt -------------------------------------------------------------------------------- /Help/directdraw-0.10.18+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/directdraw-0.10.18+.txt -------------------------------------------------------------------------------- /Help/directdraw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/directdraw.txt -------------------------------------------------------------------------------- /Help/home.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Help/home.ico -------------------------------------------------------------------------------- /Profiles/Alice - Remaster.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Alice - Remaster.ini -------------------------------------------------------------------------------- /Profiles/Alice.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Alice.ini -------------------------------------------------------------------------------- /Profiles/Alien Earth.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Alien Earth.ini -------------------------------------------------------------------------------- /Profiles/Aliens vs Predator 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Aliens vs Predator 2.ini -------------------------------------------------------------------------------- /Profiles/Anachronox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Anachronox.ini -------------------------------------------------------------------------------- /Profiles/Bermuda Syndrome - SDL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Bermuda Syndrome - SDL.ini -------------------------------------------------------------------------------- /Profiles/Bioshock - D3D10.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Bioshock - D3D10.ini -------------------------------------------------------------------------------- /Profiles/Bioshock 2 - D3D10.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Bioshock 2 - D3D10.ini -------------------------------------------------------------------------------- /Profiles/Bladerunner.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Bladerunner.ini -------------------------------------------------------------------------------- /Profiles/Brothers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Brothers.ini -------------------------------------------------------------------------------- /Profiles/Clive Barker's Undying.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Clive Barker's Undying.ini -------------------------------------------------------------------------------- /Profiles/Contrast.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Contrast.ini -------------------------------------------------------------------------------- /Profiles/Control - D3D11.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Control - D3D11.ini -------------------------------------------------------------------------------- /Profiles/Control - D3D12.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Control - D3D12.ini -------------------------------------------------------------------------------- /Profiles/Crysis - D3D10.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Crysis - D3D10.ini -------------------------------------------------------------------------------- /Profiles/Crysis 2 - D3D11.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Crysis 2 - D3D11.ini -------------------------------------------------------------------------------- /Profiles/Dark Earth.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Dark Earth.ini -------------------------------------------------------------------------------- /Profiles/Dark vengeance.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Dark vengeance.ini -------------------------------------------------------------------------------- /Profiles/Darkstone.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Darkstone.ini -------------------------------------------------------------------------------- /Profiles/Death's Door - D3D11.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Death's Door - D3D11.ini -------------------------------------------------------------------------------- /Profiles/DeusEx - D3D7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/DeusEx - D3D7.ini -------------------------------------------------------------------------------- /Profiles/DeusEx - OpenGl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/DeusEx - OpenGl.ini -------------------------------------------------------------------------------- /Profiles/Die by the sword.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Die by the sword.ini -------------------------------------------------------------------------------- /Profiles/Drakan.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Drakan.ini -------------------------------------------------------------------------------- /Profiles/Ecstatica 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Ecstatica 2.ini -------------------------------------------------------------------------------- /Profiles/Ecstatica.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Ecstatica.ini -------------------------------------------------------------------------------- /Profiles/Enclave - D3D8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Enclave - D3D8.ini -------------------------------------------------------------------------------- /Profiles/Forsaken.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Forsaken.ini -------------------------------------------------------------------------------- /Profiles/Grim Fandango.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Grim Fandango.ini -------------------------------------------------------------------------------- /Profiles/Guacamelee 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Guacamelee 2.ini -------------------------------------------------------------------------------- /Profiles/Guacamelee!.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Guacamelee!.ini -------------------------------------------------------------------------------- /Profiles/Half Life - OpenGl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Half Life - OpenGl.ini -------------------------------------------------------------------------------- /Profiles/Half Life 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Half Life 2.ini -------------------------------------------------------------------------------- /Profiles/Halo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Halo.ini -------------------------------------------------------------------------------- /Profiles/Heart of Darkness.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Heart of Darkness.ini -------------------------------------------------------------------------------- /Profiles/Hyperblade.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Hyperblade.ini -------------------------------------------------------------------------------- /Profiles/Iconoclasts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Iconoclasts.ini -------------------------------------------------------------------------------- /Profiles/Im Alive.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Im Alive.ini -------------------------------------------------------------------------------- /Profiles/Inside.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Inside.ini -------------------------------------------------------------------------------- /Profiles/Iron storm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Iron storm.ini -------------------------------------------------------------------------------- /Profiles/Jade empire.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Jade empire.ini -------------------------------------------------------------------------------- /Profiles/Little Big Adventure 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Little Big Adventure 2.ini -------------------------------------------------------------------------------- /Profiles/Little Big Adventure.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Little Big Adventure.ini -------------------------------------------------------------------------------- /Profiles/MageSlayer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/MageSlayer.ini -------------------------------------------------------------------------------- /Profiles/Martian Gothic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Martian Gothic.ini -------------------------------------------------------------------------------- /Profiles/Max Payne 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Max Payne 2.ini -------------------------------------------------------------------------------- /Profiles/Max Payne.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Max Payne.ini -------------------------------------------------------------------------------- /Profiles/Messiah.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Messiah.ini -------------------------------------------------------------------------------- /Profiles/Never Alone.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Never Alone.ini -------------------------------------------------------------------------------- /Profiles/Nox - D3D9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Nox - D3D9.ini -------------------------------------------------------------------------------- /Profiles/Nox - DirectDraw.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Nox - DirectDraw.ini -------------------------------------------------------------------------------- /Profiles/Oni.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Oni.ini -------------------------------------------------------------------------------- /Profiles/Outlaws.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Outlaws.ini -------------------------------------------------------------------------------- /Profiles/Outwars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Outwars.ini -------------------------------------------------------------------------------- /Profiles/Planescape torment.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Planescape torment.ini -------------------------------------------------------------------------------- /Profiles/Portal 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Portal 2.ini -------------------------------------------------------------------------------- /Profiles/Portal.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Portal.ini -------------------------------------------------------------------------------- /Profiles/Prince of Persia - SOT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Prince of Persia - SOT.ini -------------------------------------------------------------------------------- /Profiles/Prince of Persia 3D.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Prince of Persia 3D.ini -------------------------------------------------------------------------------- /Profiles/Project Eden.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Project Eden.ini -------------------------------------------------------------------------------- /Profiles/Rainworld.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Rainworld.ini -------------------------------------------------------------------------------- /Profiles/Revenant - Hardware.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Revenant - Hardware.ini -------------------------------------------------------------------------------- /Profiles/Revenant - Software.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Revenant - Software.ini -------------------------------------------------------------------------------- /Profiles/Rune - D3D7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Rune - D3D7.ini -------------------------------------------------------------------------------- /Profiles/Rune - OpenGl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Rune - OpenGl.ini -------------------------------------------------------------------------------- /Profiles/Sanitarium.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Sanitarium.ini -------------------------------------------------------------------------------- /Profiles/Second Sight.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Second Sight.ini -------------------------------------------------------------------------------- /Profiles/Septerra Core.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Septerra Core.ini -------------------------------------------------------------------------------- /Profiles/Shadow Man.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Shadow Man.ini -------------------------------------------------------------------------------- /Profiles/Shogo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Shogo.ini -------------------------------------------------------------------------------- /Profiles/Signalis.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Signalis.ini -------------------------------------------------------------------------------- /Profiles/Silver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Silver.ini -------------------------------------------------------------------------------- /Profiles/Slave Zero.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Slave Zero.ini -------------------------------------------------------------------------------- /Profiles/Soulbringer - DX6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Soulbringer - DX6.ini -------------------------------------------------------------------------------- /Profiles/Sudeki.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Sudeki.ini -------------------------------------------------------------------------------- /Profiles/Take no prisoners.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Take no prisoners.ini -------------------------------------------------------------------------------- /Profiles/The Wheel of Time.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/The Wheel of Time.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider - Gold.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider - Gold.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider - Legend.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider - Legend.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 2 - Gold.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 2 - Gold.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 2.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 3 - Gold.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 3 - Gold.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 3.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 4.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider 5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider 5.ini -------------------------------------------------------------------------------- /Profiles/Tomb Raider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Tomb Raider.ini -------------------------------------------------------------------------------- /Profiles/Unravel Two.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Unravel Two.ini -------------------------------------------------------------------------------- /Profiles/Unravel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Unravel.ini -------------------------------------------------------------------------------- /Profiles/Unreal Gold - D3D7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Unreal Gold - D3D7.ini -------------------------------------------------------------------------------- /Profiles/Unreal Gold - D3D8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Unreal Gold - D3D8.ini -------------------------------------------------------------------------------- /Profiles/Unreal Gold - D3D9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Unreal Gold - D3D9.ini -------------------------------------------------------------------------------- /Profiles/Wolfenstein - 2009.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Wolfenstein - 2009.ini -------------------------------------------------------------------------------- /Profiles/Zanzarah.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/Zanzarah.ini -------------------------------------------------------------------------------- /Profiles/onEscapee.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Profiles/onEscapee.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Alice.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Alice.ahk -------------------------------------------------------------------------------- /Scripts/BladeofDarknes.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/BladeofDarknes.ahk -------------------------------------------------------------------------------- /Scripts/Dark Earth.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Dark Earth.ahk -------------------------------------------------------------------------------- /Scripts/Dark vengeance.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Dark vengeance.ahk -------------------------------------------------------------------------------- /Scripts/DeusEx.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/DeusEx.ahk -------------------------------------------------------------------------------- /Scripts/Drakan.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Drakan.ahk -------------------------------------------------------------------------------- /Scripts/Enclave.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Enclave.ahk -------------------------------------------------------------------------------- /Scripts/Grim.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Grim.ahk -------------------------------------------------------------------------------- /Scripts/HOD.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/HOD.ahk -------------------------------------------------------------------------------- /Scripts/Half life.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Half life.ahk -------------------------------------------------------------------------------- /Scripts/InstallShield.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/InstallShield.ahk -------------------------------------------------------------------------------- /Scripts/KHG.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/KHG.ahk -------------------------------------------------------------------------------- /Scripts/Kain.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Kain.ahk -------------------------------------------------------------------------------- /Scripts/Lba.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Lba.ahk -------------------------------------------------------------------------------- /Scripts/MaxPayne.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/MaxPayne.ahk -------------------------------------------------------------------------------- /Scripts/MaxPayne2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/MaxPayne2.ahk -------------------------------------------------------------------------------- /Scripts/NOX.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/NOX.ahk -------------------------------------------------------------------------------- /Scripts/OutWars - D3D9.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/OutWars - D3D9.ahk -------------------------------------------------------------------------------- /Scripts/OutWars.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/OutWars.ahk -------------------------------------------------------------------------------- /Scripts/Project Eden.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Project Eden.ahk -------------------------------------------------------------------------------- /Scripts/Requiem.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Requiem.ahk -------------------------------------------------------------------------------- /Scripts/Revenant - D3D.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Revenant - D3D.ahk -------------------------------------------------------------------------------- /Scripts/Revenant - DDraw.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Revenant - DDraw.ahk -------------------------------------------------------------------------------- /Scripts/SOT.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/SOT.ahk -------------------------------------------------------------------------------- /Scripts/Sanitarium.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Sanitarium.ahk -------------------------------------------------------------------------------- /Scripts/Septerra Core.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Septerra Core.ahk -------------------------------------------------------------------------------- /Scripts/Shogo.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Shogo.ahk -------------------------------------------------------------------------------- /Scripts/Silver.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Silver.ahk -------------------------------------------------------------------------------- /Scripts/SoulReaver.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/SoulReaver.ahk -------------------------------------------------------------------------------- /Scripts/Tomb2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Tomb2.ahk -------------------------------------------------------------------------------- /Scripts/Tomb4.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Tomb4.ahk -------------------------------------------------------------------------------- /Scripts/TombRaider.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/TombRaider.ahk -------------------------------------------------------------------------------- /Scripts/Undying.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Undying.ahk -------------------------------------------------------------------------------- /Scripts/Unravel2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Unravel2.ahk -------------------------------------------------------------------------------- /Scripts/WheelofTime.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/WheelofTime.ahk -------------------------------------------------------------------------------- /Scripts/Wolfenstein - 2009.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/Wolfenstein - 2009.ahk -------------------------------------------------------------------------------- /Scripts/die.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/die.ahk -------------------------------------------------------------------------------- /Scripts/ecstatica2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/ecstatica2.ahk -------------------------------------------------------------------------------- /Scripts/halo.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/halo.ahk -------------------------------------------------------------------------------- /Scripts/imalive.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/imalive.ahk -------------------------------------------------------------------------------- /Scripts/martian.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/martian.ahk -------------------------------------------------------------------------------- /Scripts/pop3d.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/pop3d.ahk -------------------------------------------------------------------------------- /Scripts/psiops.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/psiops.ahk -------------------------------------------------------------------------------- /Scripts/soulbringer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Scripts/soulbringer.ahk -------------------------------------------------------------------------------- /Shaders/CS_5.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/CS_5.0.hlsl -------------------------------------------------------------------------------- /Shaders/FSR_1_0/ffx_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/FSR_1_0/ffx_a.h -------------------------------------------------------------------------------- /Shaders/FSR_1_0/ffx_fsr1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/FSR_1_0/ffx_fsr1.h -------------------------------------------------------------------------------- /Shaders/HLSL_4.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/HLSL_4.0.hlsl -------------------------------------------------------------------------------- /Shaders/PS_3.0.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/PS_3.0.hlsl -------------------------------------------------------------------------------- /Shaders/xBRz.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/xBRz.fx -------------------------------------------------------------------------------- /Shaders/xBRz.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/Shaders/xBRz.glsl -------------------------------------------------------------------------------- /dlls/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/.vscode/settings.json -------------------------------------------------------------------------------- /dlls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/CMakeLists.txt -------------------------------------------------------------------------------- /dlls/Headers/3DMigoto-Assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/3DMigoto-Assembler.h -------------------------------------------------------------------------------- /dlls/Headers/D3D11Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D11Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/D3D12Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D12Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/D3D12Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D12Utils.h -------------------------------------------------------------------------------- /dlls/Headers/D3D8Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D8Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/D3D8HooksWine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D8HooksWine.h -------------------------------------------------------------------------------- /dlls/Headers/D3D9Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D9Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/D3DHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3DHooks.h -------------------------------------------------------------------------------- /dlls/Headers/D3DUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3DUtils.h -------------------------------------------------------------------------------- /dlls/Headers/D3D_DDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/D3D_DDI.h -------------------------------------------------------------------------------- /dlls/Headers/DDSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/DDSurface.h -------------------------------------------------------------------------------- /dlls/Headers/DInputHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/DInputHooks.h -------------------------------------------------------------------------------- /dlls/Headers/DSoundHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/DSoundHooks.h -------------------------------------------------------------------------------- /dlls/Headers/Dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Dbug.h -------------------------------------------------------------------------------- /dlls/Headers/EZString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/EZString.h -------------------------------------------------------------------------------- /dlls/Headers/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/FileSystem.h -------------------------------------------------------------------------------- /dlls/Headers/FilesSystemHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/FilesSystemHooks.h -------------------------------------------------------------------------------- /dlls/Headers/GDI_Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/GDI_Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/GL_Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/GL_Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Input.h -------------------------------------------------------------------------------- /dlls/Headers/LibVlcPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/LibVlcPlayer.h -------------------------------------------------------------------------------- /dlls/Headers/MouseHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/MouseHooks.h -------------------------------------------------------------------------------- /dlls/Headers/OpenGL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/OpenGL/glcorearb.h -------------------------------------------------------------------------------- /dlls/Headers/OpenGL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/OpenGL/glext.h -------------------------------------------------------------------------------- /dlls/Headers/OpenGL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/OpenGL/glxext.h -------------------------------------------------------------------------------- /dlls/Headers/OpenGL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/OpenGL/wglext.h -------------------------------------------------------------------------------- /dlls/Headers/Proxydll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Proxydll.h -------------------------------------------------------------------------------- /dlls/Headers/Scalers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Scalers.h -------------------------------------------------------------------------------- /dlls/Headers/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Sync.h -------------------------------------------------------------------------------- /dlls/Headers/TextureScalers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/TextureScalers.h -------------------------------------------------------------------------------- /dlls/Headers/WinMM_Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/WinMM_Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/Wine.Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/Wine.Hooks.h -------------------------------------------------------------------------------- /dlls/Headers/collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/collections.h -------------------------------------------------------------------------------- /dlls/Headers/d3dumddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/d3dumddi.h -------------------------------------------------------------------------------- /dlls/Headers/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/d3dx12.h -------------------------------------------------------------------------------- /dlls/Headers/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/dllmain.h -------------------------------------------------------------------------------- /dlls/Headers/sethooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/sethooks.h -------------------------------------------------------------------------------- /dlls/Headers/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Headers/xbrz.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3d8.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3d8caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3d8caps.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3d8types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3d8types.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8core.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8effect.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8math.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8math.inl -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8mesh.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8shape.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/d3dx8tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/d3dx8tex.h -------------------------------------------------------------------------------- /dlls/Includes/DX8SDK/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/DX8SDK/dxfile.h -------------------------------------------------------------------------------- /dlls/Includes/EAX/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/EAX/eax.h -------------------------------------------------------------------------------- /dlls/Includes/EAX/eax2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/EAX/eax2.h -------------------------------------------------------------------------------- /dlls/Includes/EAX/eax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/EAX/eax3.h -------------------------------------------------------------------------------- /dlls/Includes/EAX/eax4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/EAX/eax4.h -------------------------------------------------------------------------------- /dlls/Includes/EAX/eax_presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/EAX/eax_presets.h -------------------------------------------------------------------------------- /dlls/Includes/MS/ms_dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/MS/ms_dinput.h -------------------------------------------------------------------------------- /dlls/Includes/MS/ms_dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/MS/ms_dsound.h -------------------------------------------------------------------------------- /dlls/Includes/cpp-httplib/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/cpp-httplib/httplib.h -------------------------------------------------------------------------------- /dlls/Includes/nvapi/lib/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/nvapi/lib/nvapi.lib -------------------------------------------------------------------------------- /dlls/Includes/nvapi/lib/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/nvapi/lib/nvapi64.lib -------------------------------------------------------------------------------- /dlls/Includes/nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /dlls/Includes/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/nvapi/nvapi.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vk_icd.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vk_layer.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vk_platform.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan.cppm -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /dlls/Includes/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Includes/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /dlls/LAYERS/LayersCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/LAYERS/LayersCommon.h -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .vscode -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/LICENSE -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/README.md -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/build.bat -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/log.cpp -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/main.cpp -------------------------------------------------------------------------------- /dlls/Simple-HTTP-Server/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Simple-HTTP-Server/utils.cpp -------------------------------------------------------------------------------- /dlls/Sources/CheatEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/CheatEngine.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D10Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D10Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D10Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D10Utils.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D11Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D11Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D11Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D11Utils.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D12Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D12Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D12Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D12Utils.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D8Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D8Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D8HooksWine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D8HooksWine.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D9Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D9Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3D9Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3D9Utils.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3DHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3DHooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3DHooksEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3DHooksEx.cpp -------------------------------------------------------------------------------- /dlls/Sources/D3DUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/D3DUtils.cpp -------------------------------------------------------------------------------- /dlls/Sources/DDSurface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/DDSurface.c -------------------------------------------------------------------------------- /dlls/Sources/DDSurfaceCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/DDSurfaceCpp.cpp -------------------------------------------------------------------------------- /dlls/Sources/DInputHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/DInputHooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/DSoundHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/DSoundHooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/Dbug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Dbug.cpp -------------------------------------------------------------------------------- /dlls/Sources/EZString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/EZString.cpp -------------------------------------------------------------------------------- /dlls/Sources/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/FileSystem.cpp -------------------------------------------------------------------------------- /dlls/Sources/FilesSystemHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/FilesSystemHooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/GDI_Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/GDI_Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/GL_Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/GL_Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/HTTPSever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/HTTPSever.cpp -------------------------------------------------------------------------------- /dlls/Sources/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Input.cpp -------------------------------------------------------------------------------- /dlls/Sources/LibVlcPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/LibVlcPlayer.cpp -------------------------------------------------------------------------------- /dlls/Sources/MouseHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/MouseHooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/NVAPISettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/NVAPISettings.cpp -------------------------------------------------------------------------------- /dlls/Sources/Proxydll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Proxydll.cpp -------------------------------------------------------------------------------- /dlls/Sources/Scalers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Scalers.cpp -------------------------------------------------------------------------------- /dlls/Sources/Sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Sockets.cpp -------------------------------------------------------------------------------- /dlls/Sources/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Sync.cpp -------------------------------------------------------------------------------- /dlls/Sources/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Test.cpp -------------------------------------------------------------------------------- /dlls/Sources/TextureScalers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/TextureScalers.cpp -------------------------------------------------------------------------------- /dlls/Sources/WinMM_Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/WinMM_Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/Wine.Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/Wine.Hooks.cpp -------------------------------------------------------------------------------- /dlls/Sources/XInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/XInput.cpp -------------------------------------------------------------------------------- /dlls/Sources/collections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/collections.cpp -------------------------------------------------------------------------------- /dlls/Sources/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/dllmain.cpp -------------------------------------------------------------------------------- /dlls/Sources/sethooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/sethooks.c -------------------------------------------------------------------------------- /dlls/Sources/sigscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/sigscan.c -------------------------------------------------------------------------------- /dlls/Sources/virtualdisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/virtualdisk.cpp -------------------------------------------------------------------------------- /dlls/Sources/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/Sources/xbrz.cpp -------------------------------------------------------------------------------- /dlls/TestsAndTools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/TestsAndTools.ipynb -------------------------------------------------------------------------------- /dlls/minhook/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/.editorconfig -------------------------------------------------------------------------------- /dlls/minhook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/.gitignore -------------------------------------------------------------------------------- /dlls/minhook/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/AUTHORS.txt -------------------------------------------------------------------------------- /dlls/minhook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/CMakeLists.txt -------------------------------------------------------------------------------- /dlls/minhook/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/LICENSE.txt -------------------------------------------------------------------------------- /dlls/minhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/README.md -------------------------------------------------------------------------------- /dlls/minhook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/include/MinHook.h -------------------------------------------------------------------------------- /dlls/minhook/minhook-1.3.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/minhook-1.3.2.zip -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/hde32.c -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/hde32.h -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/hde64.c -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/hde64.h -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/pstdint.h -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/table32.h -------------------------------------------------------------------------------- /dlls/minhook/src/HDE/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/HDE/table64.h -------------------------------------------------------------------------------- /dlls/minhook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/buffer.c -------------------------------------------------------------------------------- /dlls/minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/buffer.h -------------------------------------------------------------------------------- /dlls/minhook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/hook.c -------------------------------------------------------------------------------- /dlls/minhook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/trampoline.c -------------------------------------------------------------------------------- /dlls/minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/minhook/src/trampoline.h -------------------------------------------------------------------------------- /dlls/peixoto.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/peixoto.def -------------------------------------------------------------------------------- /dlls/peixoto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/peixoto.dll -------------------------------------------------------------------------------- /dlls/peixoto64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Daniel-Lobo/WineHooks/HEAD/dlls/peixoto64.dll --------------------------------------------------------------------------------