上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 40 下一页
摘要: char text[2014]; GetModuleBaseNameA(GetCurrentProcess(), 0, text, 1024); HMODULE hModule = GetModuleHandleA(text); HMODULE hModule = GetModuleHandleA( 阅读全文
posted @ 2020-09-12 11:38 Ajanuw 阅读(1375) 评论(0) 推荐(0) 编辑
摘要: // 返回给定窗口上方窗口的句柄。 HWND prevSibling = GetWindow((HWND)0x1011C, GW_HWNDPREV); printf("%x\n", prevSibling); //返回给定窗口下方窗口的句柄。 HWND nextSibling = GetWindow 阅读全文
posted @ 2020-09-12 11:00 Ajanuw 阅读(219) 评论(0) 推荐(0) 编辑
摘要: QProcess 用于启动外部程序并与它们进行通信 QProcess* mInputPlayProcess = new QProcess(this); QString program = "D:/my-tools/ffmpeg/bin/ffplay.exe"; QStringList argumen 阅读全文
posted @ 2020-09-11 16:35 Ajanuw 阅读(232) 评论(0) 推荐(0) 编辑
摘要: GameCheat stackoverflow 如果你的目标程序是x86/x64, 那么当前程序也需要编译为x84/x64 #include <iostream> #include <string> #include <vector> #include <regex> #include "GameC 阅读全文
posted @ 2020-09-09 12:41 Ajanuw 阅读(302) 评论(0) 推荐(0) 编辑
摘要: GameCheat 如果你的目标程序是x86/x64, 那么当前程序也需要编译为x84/x64 #include <iostream> #include <string> #include <vector> #include <regex> #include "GameCheatEx.h" usin 阅读全文
posted @ 2020-09-09 12:34 Ajanuw 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 编辑注册表 在文件 右键菜单中添加 xx.reg: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\vscode] "Icon"="D:\\tools\\MicrosoftVSCode\\Code.exe" @="Edi 阅读全文
posted @ 2020-09-07 09:25 Ajanuw 阅读(347) 评论(0) 推荐(0) 编辑
摘要: https://github.com/januwA/GameCheat #include "pch.h" #include <iostream> #include <Windows.h> #include "GameCheat.h" using namespace std; struct Regs 阅读全文
posted @ 2020-09-05 17:57 Ajanuw 阅读(358) 评论(0) 推荐(0) 编辑
摘要: https://github.com/januwA/GameCheat #include "pch.h" #include <iostream> #include <Windows.h> #include "GameCheat.h" using namespace std; void __stdca 阅读全文
posted @ 2020-09-05 15:03 Ajanuw 阅读(274) 评论(0) 推荐(0) 编辑
摘要: http://timgolden.me.uk/pywin32-docs/contents.html https://docs.python.org/3/library/ctypes.html#ctypes.WinDLL 安装 pywin32 pip install pywin32 -i https: 阅读全文
posted @ 2020-09-03 20:15 Ajanuw 阅读(626) 评论(0) 推荐(0) 编辑
摘要: #include <QtCore> #include <QTimer> QTimer *timer; timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(exit_timeout())); // 1s后执行一次 阅读全文
posted @ 2020-09-03 17:16 Ajanuw 阅读(413) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 40 下一页