X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fthecheat;a=blobdiff_plain;f=DumpContext.h;fp=DumpContext.h;h=f0738f71e80c4192de1b06f47aae1a3cd7fe98d8;hp=0000000000000000000000000000000000000000;hb=d27548f80fe411fda2ee69c74a24eab4292267e9;hpb=e8d51183acdd2410a38dcf8f0efbf7c30cd6c581 diff --git a/DumpContext.h b/DumpContext.h new file mode 100644 index 0000000..f0738f7 --- /dev/null +++ b/DumpContext.h @@ -0,0 +1,31 @@ +// +// DumpContext.h +// The Cheat +// +// Created by Chaz McGarvey on 12/6/04. +// Copyright 2004 Chaz McGarvey. All rights reserved. +// + +#import + +#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