你好,我想实现通过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);
}