]> Dogcows Code - chaz/thecheat/blob - DumpContext.h
The Cheat 1.2
[chaz/thecheat] / DumpContext.h
1 //
2 // DumpContext.h
3 // The Cheat
4 //
5 // Created by Chaz McGarvey on 12/6/04.
6 // Copyright 2004 Chaz McGarvey. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 #import "VMRegion.h"
12
13
14 @interface DumpContext : NSObject
15 {
16 // for fast access while iterating through the task loop.
17 @public;
18
19 pid_t process;
20 unsigned regionCount;
21 VMRegion lastRegion;
22
23 NSMutableData *dump;
24 }
25
26 // Initialization
27
28 - (id)initWithPID:(pid_t)pid;
29
30
31 @end
This page took 0.033551 seconds and 5 git commands to generate.