首页 新闻 会员 周边

关于MFC的ListControl控件与PBYTE问题

0
悬赏园豆:200 [待解决问题]

你好,我想实现通过ReadProcessMemory读取进程内存并已BYTE数组保存在listControl控件上面,请问题要怎么做?类似CE的这个功能:
http://sowcar.com/t6/688/1553312867x2099769142.png

目前只实现了最左边的,右边那个请问要怎么写
BYTE p[0x100] = { 0 };
HANDLE m_handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE,pid
ReadProcessMemory(m_handle, (PVOID)0x00348F22, p, sizeof(p), NULL);
for (ULONG i = 0; i < sizeof(p); i += 0x18)
{
CString str;
str.Format(L"%.8X: ", i + p);
m_list.InsertItem(0, str);
}

fairynull的主页 fairynull | 初学一级 | 园豆:2
提问于:2019-03-23 11:48
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册