会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Ajanuw
做自己的King
博客园
首页
管理
上一页
1
···
10
11
12
13
14
15
16
17
18
···
40
下一页
2020年9月15日
关于TCP的Total Length
摘要: TCP/IP传输层 文档 随便找了个发送的TCP: 70 89 cc ee 84 2c 3c 2c 30 a6 a2 d0 08 00 45 00 00 4c c7 a8 40 00 80 06 00 00 c0 a8 01 06 31 eb 6b da b6 ef 0e 96 37 84 39 6
阅读全文
posted @ 2020-09-15 19:53 Ajanuw
阅读(1439)
评论(0)
推荐(0)
2020年9月14日
lua调用dll导出的函数
摘要: 参考手册 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
阅读(644)
评论(0)
推荐(0)
2020年9月12日
c++ 获取当前程序的主模块句柄
摘要: char text[2014]; GetModuleBaseNameA(GetCurrentProcess(), 0, text, 1024); HMODULE hModule = GetModuleHandleA(text); HMODULE hModule = GetModuleHandleA(
阅读全文
posted @ 2020-09-12 11:38 Ajanuw
阅读(1442)
评论(0)
推荐(0)
c++ 获取兄弟窗口
摘要: // 返回给定窗口上方窗口的句柄。 HWND prevSibling = GetWindow((HWND)0x1011C, GW_HWNDPREV); printf("%x\n", prevSibling); //返回给定窗口下方窗口的句柄。 HWND nextSibling = GetWindow
阅读全文
posted @ 2020-09-12 11:00 Ajanuw
阅读(235)
评论(0)
推荐(0)
2020年9月11日
qt QProcess
摘要: QProcess 用于启动外部程序并与它们进行通信 QProcess* mInputPlayProcess = new QProcess(this); QString program = "D:/my-tools/ffmpeg/bin/ffplay.exe"; QStringList argumen
阅读全文
posted @ 2020-09-11 16:35 Ajanuw
阅读(235)
评论(0)
推荐(0)
2020年9月9日
c++ winapi 在当前程序(local)调用目标程序(target)的函数
摘要: GameCheat stackoverflow 如果你的目标程序是x86/x64, 那么当前程序也需要编译为x84/x64 #include <iostream> #include <string> #include <vector> #include <regex> #include "GameC
阅读全文
posted @ 2020-09-09 12:41 Ajanuw
阅读(312)
评论(0)
推荐(0)
c++ winapi 让目标程序(target)调用当前程序(local)的函数
摘要: GameCheat 如果你的目标程序是x86/x64, 那么当前程序也需要编译为x84/x64 #include <iostream> #include <string> #include <vector> #include <regex> #include "GameCheatEx.h" usin
阅读全文
posted @ 2020-09-09 12:34 Ajanuw
阅读(313)
评论(0)
推荐(0)
2020年9月7日
windows 设置右键菜单
摘要: 编辑注册表 在文件 右键菜单中添加 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
阅读(373)
评论(0)
推荐(0)
2020年9月5日
c++ x86_x64挂钩函数 传递寄存器表
摘要: 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
阅读(393)
评论(0)
推荐(0)
c++ x86_x64挂钩无参数函数
摘要: 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
阅读(298)
评论(0)
推荐(0)
上一页
1
···
10
11
12
13
14
15
16
17
18
···
40
下一页