]> Dogcows Code - chaz/thecheat/blob - DumpContext.h
update contact information and project URL
[chaz/thecheat] / DumpContext.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12
13 #import <Cocoa/Cocoa.h>
14
15 #import "VMRegion.h"
16
17
18 @interface DumpContext : NSObject
19 {
20 // for fast access while iterating through the task loop.
21 @public;
22
23 pid_t process;
24 unsigned regionCount;
25 VMRegion lastRegion;
26
27 NSMutableData *dump;
28 }
29
30 // Initialization
31
32 - (id)initWithPID:(pid_t)pid;
33
34
35 @end
This page took 0.033066 seconds and 5 git commands to generate.