X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fthecheat;a=blobdiff_plain;f=SearchResults.h;fp=SearchResults.h;h=364470a29530cb681dfc788895ca1d5c64bdfefa;hp=0000000000000000000000000000000000000000;hb=42cf7bbe564d70233a0d73baee613f209eb00eb6;hpb=2d60a59a8ad195dd0af8f90c8d5b74a69ce7f4fa diff --git a/SearchResults.h b/SearchResults.h new file mode 100644 index 0000000..364470a --- /dev/null +++ b/SearchResults.h @@ -0,0 +1,33 @@ + +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +// Project: The Cheat +// +// File: SearchResults.h +// Created: Sat Oct 04 2003 +// +// Copyright: 2003 Chaz McGarvey. All rights reserved. +// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +#import + +#include "cheat_types.h" + + +@interface SearchResults : NSObject +{ + TCtype myType; + TCsize mySize; + + TCaddress *myData; + int myAmount; +} + ++ (id)resultsWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount; +- (id)initWithType:(TCtype)type size:(TCsize)size data:(TCaddress const *)data amount:(int)amount; + +- (TCtype)type; +- (TCsize)size; +- (TCaddress *)data; +- (int)amount; + +@end \ No newline at end of file