]> Dogcows Code - chaz/thecheat/blob - DumpContext.h
f0738f71e80c4192de1b06f47aae1a3cd7fe98d8
[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.030791 seconds and 3 git commands to generate.