]> Dogcows Code - chaz/thecheat/blobdiff - DumpContext.h
The Cheat 1.2
[chaz/thecheat] / DumpContext.h
diff --git a/DumpContext.h b/DumpContext.h
new file mode 100644 (file)
index 0000000..f0738f7
--- /dev/null
@@ -0,0 +1,31 @@
+//
+//  DumpContext.h
+//  The Cheat
+//
+//  Created by Chaz McGarvey on 12/6/04.
+//  Copyright 2004 Chaz McGarvey. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+#import "VMRegion.h"
+
+
+@interface DumpContext : NSObject
+{
+       // for fast access while iterating through the task loop.
+       @public;
+       
+       pid_t process;
+       unsigned regionCount;
+       VMRegion lastRegion;
+       
+       NSMutableData *dump;
+}
+
+// Initialization
+
+- (id)initWithPID:(pid_t)pid;
+
+
+@end
This page took 0.022226 seconds and 4 git commands to generate.