
Window
程序猿快跑
这个作者很懒,什么都没留下…
展开
-
Windbg调试笔记-查看stl结构数据
1.要使用版本对的windbg版本(如32位进程产生的dump得使用x86版本?,这个不太确定); 2>.load stlkit 3>!set setInfo //查看set 4>!stl vectorInfo //查看vector 5>!std_map mapAddress //查看map? 6>dt structInfo //查看结构体 ...原创 2021-01-30 20:20:24 · 570 阅读 · 1 评论 -
DllMain
转自:https://docs.microsoft.com/zh-cn/windows/win32/dlls/dllmain转载 2021-01-19 08:13:28 · 149 阅读 · 0 评论 -
GetPrivateProfileString 读带双引号字符串的坑
一个GetPrivateProfileString读配置文件的坑,避免再次踩坑: 1)期望读到的内容是: operation="%product%\A.exe" -reinstall:"-name:a-id:123" 2)实际上读到的内容是: operation=%product%\A.exe" -reinstall:"-name:a-id:123 3)MSDN的有描述:If the string associated with lpKeyName is enclosed in single or do..原创 2020-08-11 11:06:03 · 570 阅读 · 0 评论