├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── AutoHotkeyx.sln ├── AutoHotkeyx.vcxproj ├── AutoHotkeyx.vcxproj.filters ├── Config.vcxproj ├── README-LIB.md ├── README.md ├── debug.natvis ├── license.txt ├── source ├── AutoHotkey.cpp ├── Debugger.cpp ├── Debugger.h ├── DispObject.h ├── KuString.h ├── MdFunc.cpp ├── MdFunc.h ├── MdType.h ├── SimpleHeap.cpp ├── SimpleHeap.h ├── StrRet.h ├── StringConv.cpp ├── StringConv.h ├── TextIO.cpp ├── TextIO.h ├── WinGroup.cpp ├── WinGroup.h ├── abi.h ├── ahklib.cpp ├── ahklib.idl ├── ahkversion.cpp ├── ahkversion.h ├── application.cpp ├── application.h ├── clipboard.cpp ├── clipboard.h ├── config.h ├── cpp.hint ├── debug.h ├── defines.h ├── error.cpp ├── globaldata.cpp ├── globaldata.h ├── hook.cpp ├── hook.h ├── hotkey.cpp ├── hotkey.h ├── input_object.cpp ├── input_object.h ├── keyboard_mouse.cpp ├── keyboard_mouse.h ├── lib │ ├── CCallback.cpp │ ├── DllCall.cpp │ ├── Gui.ListView.cpp │ ├── Gui.StatusBar.cpp │ ├── Gui.TreeView.cpp │ ├── InputBox.cpp │ ├── drive.cpp │ ├── env.cpp │ ├── file.cpp │ ├── functions.h │ ├── input.cpp │ ├── interop.cpp │ ├── math.cpp │ ├── pixel.cpp │ ├── process.cpp │ ├── regex.cpp │ ├── sound.cpp │ ├── string.cpp │ ├── vars.cpp │ ├── wait.cpp │ └── win.cpp ├── lib_pcre │ ├── lib_pcre.vcxproj │ ├── lib_pcre.vcxproj.filters │ └── pcre │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── HACKING │ │ ├── INSTALL │ │ ├── LICENCE │ │ ├── NEWS │ │ ├── NON-UNIX-USE │ │ ├── README │ │ ├── config.h │ │ ├── pcre.h │ │ ├── pcre16_chartables.c │ │ ├── pcre16_compile.c │ │ ├── pcre16_config.c │ │ ├── pcre16_exec.c │ │ ├── pcre16_fullinfo.c │ │ ├── pcre16_get.c │ │ ├── pcre16_globals.c │ │ ├── pcre16_jit_compile.c │ │ ├── pcre16_newline.c │ │ ├── pcre16_ord2utf16.c │ │ ├── pcre16_refcount.c │ │ ├── pcre16_string_utils.c │ │ ├── pcre16_study.c │ │ ├── pcre16_tables.c │ │ ├── pcre16_ucd.c │ │ ├── pcre16_valid_utf16.c │ │ ├── pcre16_version.c │ │ ├── pcre16_xclass.c │ │ ├── pcre_chartables.c │ │ ├── pcre_compile.c │ │ ├── pcre_config.c │ │ ├── pcre_dfa_exec.c │ │ ├── pcre_exec.c │ │ ├── pcre_fullinfo.c │ │ ├── pcre_get.c │ │ ├── pcre_globals.c │ │ ├── pcre_internal.h │ │ ├── pcre_jit_compile.c │ │ ├── pcre_maketables.c │ │ ├── pcre_newline.c │ │ ├── pcre_ord2utf8.c │ │ ├── pcre_refcount.c │ │ ├── pcre_string_utils.c │ │ ├── pcre_study.c │ │ ├── pcre_tables.c │ │ ├── pcre_ucd.c │ │ ├── pcre_valid_utf8.c │ │ ├── pcre_version.c │ │ ├── pcre_xclass.c │ │ ├── pcret.h │ │ ├── sljit │ │ ├── sljitConfig.h │ │ ├── sljitConfigInternal.h │ │ ├── sljitExecAllocator.c │ │ ├── sljitLir.c │ │ ├── sljitLir.h │ │ ├── sljitNativeX86_32.c │ │ ├── sljitNativeX86_64.c │ │ ├── sljitNativeX86_common.c │ │ └── sljitUtils.c │ │ └── ucp.h ├── libx64call │ ├── HowToCompile.txt │ ├── x64call.asm │ └── x64stub.asm ├── map.h ├── os_version.cpp ├── os_version.h ├── pch.cpp ├── pch_min.cpp ├── qmath.h ├── resources │ ├── AutoHotkey.exe.manifest │ ├── AutoHotkey.rc │ ├── icon_filetype.ico │ ├── icon_filetype_small.ico │ ├── icon_main.ico │ ├── icon_pause.ico │ ├── icon_pause_suspend.ico │ ├── icon_suspend.ico │ ├── icons-export.ahk │ ├── icons.svg │ └── resource.h ├── script.cpp ├── script.h ├── script2.cpp ├── script_autoit.cpp ├── script_com.cpp ├── script_com.h ├── script_expression.cpp ├── script_func_impl.h ├── script_gui.cpp ├── script_gui.h ├── script_menu.cpp ├── script_module.cpp ├── script_module.h ├── script_object.cpp ├── script_object.h ├── script_object_bif.cpp ├── script_registry.cpp ├── scripts │ └── minman.js ├── stdafx.h ├── util.cpp ├── util.h ├── var.cpp ├── var.h ├── window.cpp ├── window.h └── x86call.asm └── vsc-build-env.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AutoHotkeyx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/AutoHotkeyx.sln -------------------------------------------------------------------------------- /AutoHotkeyx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/AutoHotkeyx.vcxproj -------------------------------------------------------------------------------- /AutoHotkeyx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/AutoHotkeyx.vcxproj.filters -------------------------------------------------------------------------------- /Config.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/Config.vcxproj -------------------------------------------------------------------------------- /README-LIB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/README-LIB.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/README.md -------------------------------------------------------------------------------- /debug.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/debug.natvis -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/license.txt -------------------------------------------------------------------------------- /source/AutoHotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/AutoHotkey.cpp -------------------------------------------------------------------------------- /source/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/Debugger.cpp -------------------------------------------------------------------------------- /source/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/Debugger.h -------------------------------------------------------------------------------- /source/DispObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/DispObject.h -------------------------------------------------------------------------------- /source/KuString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/KuString.h -------------------------------------------------------------------------------- /source/MdFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/MdFunc.cpp -------------------------------------------------------------------------------- /source/MdFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/MdFunc.h -------------------------------------------------------------------------------- /source/MdType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/MdType.h -------------------------------------------------------------------------------- /source/SimpleHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/SimpleHeap.cpp -------------------------------------------------------------------------------- /source/SimpleHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/SimpleHeap.h -------------------------------------------------------------------------------- /source/StrRet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/StrRet.h -------------------------------------------------------------------------------- /source/StringConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/StringConv.cpp -------------------------------------------------------------------------------- /source/StringConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/StringConv.h -------------------------------------------------------------------------------- /source/TextIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/TextIO.cpp -------------------------------------------------------------------------------- /source/TextIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/TextIO.h -------------------------------------------------------------------------------- /source/WinGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/WinGroup.cpp -------------------------------------------------------------------------------- /source/WinGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/WinGroup.h -------------------------------------------------------------------------------- /source/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/abi.h -------------------------------------------------------------------------------- /source/ahklib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/ahklib.cpp -------------------------------------------------------------------------------- /source/ahklib.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/ahklib.idl -------------------------------------------------------------------------------- /source/ahkversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/ahkversion.cpp -------------------------------------------------------------------------------- /source/ahkversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/ahkversion.h -------------------------------------------------------------------------------- /source/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/application.cpp -------------------------------------------------------------------------------- /source/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/application.h -------------------------------------------------------------------------------- /source/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/clipboard.cpp -------------------------------------------------------------------------------- /source/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/clipboard.h -------------------------------------------------------------------------------- /source/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/config.h -------------------------------------------------------------------------------- /source/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/cpp.hint -------------------------------------------------------------------------------- /source/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/debug.h -------------------------------------------------------------------------------- /source/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/defines.h -------------------------------------------------------------------------------- /source/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/error.cpp -------------------------------------------------------------------------------- /source/globaldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/globaldata.cpp -------------------------------------------------------------------------------- /source/globaldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/globaldata.h -------------------------------------------------------------------------------- /source/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/hook.cpp -------------------------------------------------------------------------------- /source/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/hook.h -------------------------------------------------------------------------------- /source/hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/hotkey.cpp -------------------------------------------------------------------------------- /source/hotkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/hotkey.h -------------------------------------------------------------------------------- /source/input_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/input_object.cpp -------------------------------------------------------------------------------- /source/input_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/input_object.h -------------------------------------------------------------------------------- /source/keyboard_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/keyboard_mouse.cpp -------------------------------------------------------------------------------- /source/keyboard_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/keyboard_mouse.h -------------------------------------------------------------------------------- /source/lib/CCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/CCallback.cpp -------------------------------------------------------------------------------- /source/lib/DllCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/DllCall.cpp -------------------------------------------------------------------------------- /source/lib/Gui.ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/Gui.ListView.cpp -------------------------------------------------------------------------------- /source/lib/Gui.StatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/Gui.StatusBar.cpp -------------------------------------------------------------------------------- /source/lib/Gui.TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/Gui.TreeView.cpp -------------------------------------------------------------------------------- /source/lib/InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/InputBox.cpp -------------------------------------------------------------------------------- /source/lib/drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/drive.cpp -------------------------------------------------------------------------------- /source/lib/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/env.cpp -------------------------------------------------------------------------------- /source/lib/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/file.cpp -------------------------------------------------------------------------------- /source/lib/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/functions.h -------------------------------------------------------------------------------- /source/lib/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/input.cpp -------------------------------------------------------------------------------- /source/lib/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/interop.cpp -------------------------------------------------------------------------------- /source/lib/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/math.cpp -------------------------------------------------------------------------------- /source/lib/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/pixel.cpp -------------------------------------------------------------------------------- /source/lib/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/process.cpp -------------------------------------------------------------------------------- /source/lib/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/regex.cpp -------------------------------------------------------------------------------- /source/lib/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/sound.cpp -------------------------------------------------------------------------------- /source/lib/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/string.cpp -------------------------------------------------------------------------------- /source/lib/vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/vars.cpp -------------------------------------------------------------------------------- /source/lib/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/wait.cpp -------------------------------------------------------------------------------- /source/lib/win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib/win.cpp -------------------------------------------------------------------------------- /source/lib_pcre/lib_pcre.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/lib_pcre.vcxproj -------------------------------------------------------------------------------- /source/lib_pcre/lib_pcre.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/lib_pcre.vcxproj.filters -------------------------------------------------------------------------------- /source/lib_pcre/pcre/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/AUTHORS -------------------------------------------------------------------------------- /source/lib_pcre/pcre/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/COPYING -------------------------------------------------------------------------------- /source/lib_pcre/pcre/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/ChangeLog -------------------------------------------------------------------------------- /source/lib_pcre/pcre/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/HACKING -------------------------------------------------------------------------------- /source/lib_pcre/pcre/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/INSTALL -------------------------------------------------------------------------------- /source/lib_pcre/pcre/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/LICENCE -------------------------------------------------------------------------------- /source/lib_pcre/pcre/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/NEWS -------------------------------------------------------------------------------- /source/lib_pcre/pcre/NON-UNIX-USE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/NON-UNIX-USE -------------------------------------------------------------------------------- /source/lib_pcre/pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/README -------------------------------------------------------------------------------- /source/lib_pcre/pcre/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/config.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_chartables.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_compile.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_config.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_exec.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_fullinfo.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_get.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_globals.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_jit_compile.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_newline.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_ord2utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_ord2utf16.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_refcount.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_string_utils.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_study.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_tables.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_ucd.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_valid_utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_valid_utf16.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_version.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre16_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre16_xclass.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_chartables.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_compile.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_config.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_dfa_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_dfa_exec.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_exec.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_fullinfo.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_get.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_globals.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_internal.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_jit_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_jit_compile.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_maketables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_maketables.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_newline.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_ord2utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_ord2utf8.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_refcount.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_string_utils.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_study.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_tables.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_ucd.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_valid_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_valid_utf8.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_version.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcre_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcre_xclass.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/pcret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/pcret.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitConfig.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitConfigInternal.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitExecAllocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitExecAllocator.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitLir.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitLir.h -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitNativeX86_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitNativeX86_32.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitNativeX86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitNativeX86_64.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitNativeX86_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitNativeX86_common.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/sljit/sljitUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/sljit/sljitUtils.c -------------------------------------------------------------------------------- /source/lib_pcre/pcre/ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/lib_pcre/pcre/ucp.h -------------------------------------------------------------------------------- /source/libx64call/HowToCompile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/libx64call/HowToCompile.txt -------------------------------------------------------------------------------- /source/libx64call/x64call.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/libx64call/x64call.asm -------------------------------------------------------------------------------- /source/libx64call/x64stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/libx64call/x64stub.asm -------------------------------------------------------------------------------- /source/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/map.h -------------------------------------------------------------------------------- /source/os_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/os_version.cpp -------------------------------------------------------------------------------- /source/os_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/os_version.h -------------------------------------------------------------------------------- /source/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/pch.cpp -------------------------------------------------------------------------------- /source/pch_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/pch_min.cpp -------------------------------------------------------------------------------- /source/qmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/qmath.h -------------------------------------------------------------------------------- /source/resources/AutoHotkey.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/AutoHotkey.exe.manifest -------------------------------------------------------------------------------- /source/resources/AutoHotkey.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/AutoHotkey.rc -------------------------------------------------------------------------------- /source/resources/icon_filetype.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_filetype.ico -------------------------------------------------------------------------------- /source/resources/icon_filetype_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_filetype_small.ico -------------------------------------------------------------------------------- /source/resources/icon_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_main.ico -------------------------------------------------------------------------------- /source/resources/icon_pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_pause.ico -------------------------------------------------------------------------------- /source/resources/icon_pause_suspend.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_pause_suspend.ico -------------------------------------------------------------------------------- /source/resources/icon_suspend.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icon_suspend.ico -------------------------------------------------------------------------------- /source/resources/icons-export.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icons-export.ahk -------------------------------------------------------------------------------- /source/resources/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/icons.svg -------------------------------------------------------------------------------- /source/resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/resources/resource.h -------------------------------------------------------------------------------- /source/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script.cpp -------------------------------------------------------------------------------- /source/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script.h -------------------------------------------------------------------------------- /source/script2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script2.cpp -------------------------------------------------------------------------------- /source/script_autoit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_autoit.cpp -------------------------------------------------------------------------------- /source/script_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_com.cpp -------------------------------------------------------------------------------- /source/script_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_com.h -------------------------------------------------------------------------------- /source/script_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_expression.cpp -------------------------------------------------------------------------------- /source/script_func_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_func_impl.h -------------------------------------------------------------------------------- /source/script_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_gui.cpp -------------------------------------------------------------------------------- /source/script_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_gui.h -------------------------------------------------------------------------------- /source/script_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_menu.cpp -------------------------------------------------------------------------------- /source/script_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_module.cpp -------------------------------------------------------------------------------- /source/script_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_module.h -------------------------------------------------------------------------------- /source/script_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_object.cpp -------------------------------------------------------------------------------- /source/script_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_object.h -------------------------------------------------------------------------------- /source/script_object_bif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_object_bif.cpp -------------------------------------------------------------------------------- /source/script_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/script_registry.cpp -------------------------------------------------------------------------------- /source/scripts/minman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/scripts/minman.js -------------------------------------------------------------------------------- /source/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/stdafx.h -------------------------------------------------------------------------------- /source/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/util.cpp -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/util.h -------------------------------------------------------------------------------- /source/var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/var.cpp -------------------------------------------------------------------------------- /source/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/var.h -------------------------------------------------------------------------------- /source/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/window.cpp -------------------------------------------------------------------------------- /source/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/window.h -------------------------------------------------------------------------------- /source/x86call.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/source/x86call.asm -------------------------------------------------------------------------------- /vsc-build-env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sulhan12/AutoHotkey/HEAD/vsc-build-env.cmd --------------------------------------------------------------------------------