gitextract_jddv06rn/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ └── feature.yml │ └── workflows/ │ ├── ci.yml │ └── package.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── CMakeUserPresets.json ├── LICENSE ├── OpenSpeedy_en_US.ts ├── OpenSpeedy_zh_CN.ts ├── OpenSpeedy_zh_TW.ts ├── README.md ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── bridge/ │ ├── CMakeLists.txt │ └── main.cpp ├── config.h ├── cpuutils.cpp ├── cpuutils.h ├── docs/ │ ├── README_cn.md │ └── README_ja.md ├── installer/ │ ├── OpenSpeedy.wxs │ ├── config/ │ │ └── config.xml │ └── create_installer.bat ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── memutils.cpp ├── memutils.h ├── preferencedialog.cpp ├── preferencedialog.h ├── preferencedialog.ui ├── processmonitor.cpp ├── processmonitor.h ├── qsinglekeysequenceedit.cpp ├── qsinglekeysequenceedit.h ├── resources.qrc ├── script/ │ ├── build32.bat │ ├── build64.bat │ └── initenv.bat ├── speedpatch/ │ ├── CMakeLists.txt │ ├── SpeedPatch_global.h │ ├── speedpatch.cpp │ ├── speedpatch.h │ └── vcpkg.json ├── taskscheduler.cpp ├── taskscheduler.h ├── themeutils.cpp ├── themeutils.h ├── third_party/ │ └── minhook/ │ ├── .editorconfig │ ├── .github/ │ │ └── workflows/ │ │ └── msbuild.yml │ ├── .gitignore │ ├── AUTHORS.txt │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── build/ │ │ └── MinGW/ │ │ ├── make.bat │ │ └── make.sh │ ├── cmake/ │ │ └── minhook-config.cmake.in │ ├── dll_resources/ │ │ └── MinHook.def │ ├── include/ │ │ └── MinHook.h │ └── src/ │ ├── buffer.c │ ├── buffer.h │ ├── hde/ │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── windbg.h ├── winutils.cpp └── winutils.h