├── Example1 - MsgBoxW.ahk ├── Example2 - GetOpenFileNameW.ahk ├── Example3 - InjectAhkDll.ahk ├── Example4 - InjectAhkDll (hook address).ahk ├── Example5 - Change GUI class name.ahk ├── Example6 - Change GUI class name (Memory).ahk ├── Example7 - HttpOpenRequestW.ahk ├── Lib ├── InjectAhkDll.ahk ├── MinHook.ahk ├── MinHook_Memory.ahk ├── _MemoryLibrary.ahk ├── _Struct.ahk └── sizeof.ahk ├── MinHook ├── MinHook.h ├── x32 │ └── MinHook.dll └── x64 │ └── MinHook.dll ├── README.md └── ahkDll ├── x32 ├── AutoHotkey.dll ├── AutoHotkeyMini.dll └── msvcr100.dll └── x64 ├── AutoHotkey.dll ├── AutoHotkeyMini.dll └── msvcr100.dll /Example1 - MsgBoxW.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example1 - MsgBoxW.ahk -------------------------------------------------------------------------------- /Example2 - GetOpenFileNameW.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example2 - GetOpenFileNameW.ahk -------------------------------------------------------------------------------- /Example3 - InjectAhkDll.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example3 - InjectAhkDll.ahk -------------------------------------------------------------------------------- /Example4 - InjectAhkDll (hook address).ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example4 - InjectAhkDll (hook address).ahk -------------------------------------------------------------------------------- /Example5 - Change GUI class name.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example5 - Change GUI class name.ahk -------------------------------------------------------------------------------- /Example6 - Change GUI class name (Memory).ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example6 - Change GUI class name (Memory).ahk -------------------------------------------------------------------------------- /Example7 - HttpOpenRequestW.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Example7 - HttpOpenRequestW.ahk -------------------------------------------------------------------------------- /Lib/InjectAhkDll.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/InjectAhkDll.ahk -------------------------------------------------------------------------------- /Lib/MinHook.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/MinHook.ahk -------------------------------------------------------------------------------- /Lib/MinHook_Memory.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/MinHook_Memory.ahk -------------------------------------------------------------------------------- /Lib/_MemoryLibrary.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/_MemoryLibrary.ahk -------------------------------------------------------------------------------- /Lib/_Struct.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/_Struct.ahk -------------------------------------------------------------------------------- /Lib/sizeof.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/Lib/sizeof.ahk -------------------------------------------------------------------------------- /MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/MinHook/MinHook.h -------------------------------------------------------------------------------- /MinHook/x32/MinHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/MinHook/x32/MinHook.dll -------------------------------------------------------------------------------- /MinHook/x64/MinHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/MinHook/x64/MinHook.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/README.md -------------------------------------------------------------------------------- /ahkDll/x32/AutoHotkey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x32/AutoHotkey.dll -------------------------------------------------------------------------------- /ahkDll/x32/AutoHotkeyMini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x32/AutoHotkeyMini.dll -------------------------------------------------------------------------------- /ahkDll/x32/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x32/msvcr100.dll -------------------------------------------------------------------------------- /ahkDll/x64/AutoHotkey.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x64/AutoHotkey.dll -------------------------------------------------------------------------------- /ahkDll/x64/AutoHotkeyMini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x64/AutoHotkeyMini.dll -------------------------------------------------------------------------------- /ahkDll/x64/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplinshi/MinHook-AHK/HEAD/ahkDll/x64/msvcr100.dll --------------------------------------------------------------------------------