这行代码一直让我莫名其妙!
string s = Marshal.PtrToStringAnsi((IntPtr)((Int32)Buffer +
Marshal.SizeOf(typeof(Struct))));
这是函数的其余部分。
Api.LvItem lvItem = new Api.LvItem();
IntPtr lpLocalBuffer = Marshal.AllocHGlobal(1024);
uint pid;
uint thread = Api.GetWindowThreadProcessId(hWnd, out pid);
IntPtr hProcess = Api.OpenProcess(0x001f0fff, false, (int)pid);
IntPtr lpRemoteBuffer = Api.VirtualAllocEx(hProcess, IntPtr.Zero, 1024, 0x1000, 4);
lvItem.mask = 1;
lvItem.iItem = index;
lvItem.iSubItem = subitem;
lvItem.pszText = (IntPtr)((int)lpRemoteBuffer + Marshal.SizeOf(typeof(Api.LvItem)));
lvItem.cchTextMax = 50;
Api.WriteProcessMemory(hProcess, lpRemoteBuffer, ref lvItem, Marshal.SizeOf(typeof(Api.LvItem)), 0);
Api.SendMessage(hWnd, 0x1005, IntPtr.Zero, lpRemoteBuffer);
Api.ReadProcessMemory(hProcess, lpRemoteBuffer, lpLocalBuffer, 1024, 0);
string ret = Marshal.PtrToStringAnsi((IntPtr)((int)lpLocalBuffer + Marshal.SizeOf(typeof(Api.LvItem))));
Marshal.FreeHGlobal((IntPtr)lpLocalBuffer);
Api.VirtualFreeEx(hProcess, lpRemoteBuffer, 0, 0x8000);
Api.CloseHandle(hProcess);
return ret;
此代码用于获取另一个进程的列表视图中每个项目的文本。我从这里跟踪代码(半):http: //taylorza.blogspot.com/2009/08/archive-hacking-my-way-across-process.html
我很抱歉使用 0x1005。这就是消息的代码LV_GETITEM
。
我已将其范围缩小到与平台相关。它适用于 x64 和 AnyCPU,但不适用于 x86。我将如何改变内存分配等的大小差异
在控制台应用程序中使用时,它会正确返回值。但是,当我在通过反射调用的 .DLL 中使用此代码(及其其余部分)时,该代码返回一个不正确的字符串。它看起来是空的,但实际上并不为空。也许只是空白...
有没有人对这种麻烦编组有类似的经历?这让我困惑了整整三个小时……
非常感谢任何帮助或任何想法或任何东西!