Exemplo n.º 1
0
            public static void ProcessRead(IntPtr Dst, ref ListViewAccessor.RECT Src, int Len)
            {
                IntPtr ReadBytes = NULL;

                ReadProcessMemory(hProcess, Dst, ref Src, Len, ReadBytes);
            }
Exemplo n.º 2
0
 static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress,
                                      ref ListViewAccessor.RECT lpBuffer, int dwSize, IntPtr lpNumberOfBytesRead);
Exemplo n.º 3
0
            public static void ProcessWrite(IntPtr Dst, ref ListViewAccessor.RECT Src, int Len)
            {
                IntPtr WriteBytes = NULL;

                WriteProcessMemory(hProcess, Dst, ref Src, Len, WriteBytes);
            }
Exemplo n.º 4
0
 static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress,
                                       ref ListViewAccessor.RECT buffer, int dwSize, IntPtr lpNumberOfBytesWritten);