上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 40 下一页
摘要: 参考手册 hello.dll #include "pch.h" #include "lua.hpp" #pragma comment(lib, "lua.lib") BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LP 阅读全文
posted @ 2020-09-14 18:16 Ajanuw 阅读(594) 评论(0) 推荐(0) 编辑
摘要: char text[2014]; GetModuleBaseNameA(GetCurrentProcess(), 0, text, 1024); HMODULE hModule = GetModuleHandleA(text); HMODULE hModule = GetModuleHandleA( 阅读全文
posted @ 2020-09-12 11:38 Ajanuw 阅读(1410) 评论(0) 推荐(0) 编辑
摘要: // 返回给定窗口上方窗口的句柄。 HWND prevSibling = GetWindow((HWND)0x1011C, GW_HWNDPREV); printf("%x\n", prevSibling); //返回给定窗口下方窗口的句柄。 HWND nextSibling = GetWindow 阅读全文
posted @ 2020-09-12 11:00 Ajanuw 阅读(225) 评论(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 阅读(234) 评论(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 阅读(305) 评论(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 阅读(293) 评论(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 阅读(354) 评论(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 阅读(370) 评论(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 阅读(280) 评论(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 阅读(641) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 40 下一页