ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingRamDumperDialog.cs
(Generate patch)

Comparing trunk/RomCheater/Docking/FloatingRamDumperDialog.cs (file contents):
Revision 168 by william, Mon May 28 08:32:18 2012 UTC vs.
Revision 169 by william, Mon May 28 08:49:42 2012 UTC

# Line 184 | Line 184 | namespace RomCheater.Docking
184              reader.ReadProcess = this.AcceptedProcess;
185              reader.OpenProcess();
186              int bytesReadSize;
187 <            reader.DumpMemory(filename, (uint)start, count, out bytesReadSize);
187 >            if (reader.DumpMemory(this.AcceptedProcess,filename, (uint)start, count, out bytesReadSize))
188 >            {
189 >                MessageBox.Show(string.Format("Succefully dumped memory (0x{0:x8}-0x{1:x8}) from pid=({3}) to file {2}", start, start + count, filename, string.Format("0x{0:x4} {1}.exe", this.AcceptedProcess.Id, AcceptedProcess.ProcessName)), "", MessageBoxButtons.OK, MessageBoxIcon.Information);
190 >            }
191 >            else
192 >            {
193 >                MessageBox.Show(string.Format("Failed to dump memory (0x{0:x8}-0x{1:x8}) from pid=({3}) to file {2}", start, start + count, filename, string.Format("0x{0:x4} {1}.exe", this.AcceptedProcess.Id, AcceptedProcess.ProcessName)), "", MessageBoxButtons.OK, MessageBoxIcon.Error);
194 >            }
195              reader.CloseHandle();            
196          }
197          #endregion

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines