-
Notifications
You must be signed in to change notification settings - Fork 3
/
defines.h
27 lines (19 loc) · 1.3 KB
/
defines.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#import "ACommon.h"
#import "AFirmware.h"
#define DYLDROP [[NSBundle mainBundle] pathForResource:@"dyldrop" ofType:@"" inDirectory:@"bin"]
#define MACHOMAN [[NSBundle mainBundle] pathForResource:@"machoman" ofType:@"" inDirectory:@"bin"]
#define VFDECRYPT [[NSBundle mainBundle] pathForResource:@"vfdecrypt" ofType:@"" inDirectory:@"bin"]
#define GENPASS [[NSBundle mainBundle] pathForResource:@"genpass" ofType:@"" inDirectory:@"bin"]
#define GRABKBAG [[NSBundle mainBundle] pathForResource:@"grabkbag" ofType:@"" inDirectory:@"bin"]
#define DBHELPER [[NSBundle mainBundle] pathForResource:@"dbHelper" ofType:@"" inDirectory:@"bin"]
#define XPWNTOOL [[NSBundle mainBundle] pathForResource:@"xpwntool" ofType:@"" inDirectory:@"bin"]
#define DYLDCACHE [[NSBundle mainBundle] pathForResource:@"dyldcache" ofType:@"" inDirectory:@"bin"]
#define CDC [[NSBundle mainBundle] pathForResource:@"class-dump-cache" ofType:@"" inDirectory:@"bin"]
#define CDZ [[NSBundle mainBundle] pathForResource:@"class-dump-z" ofType:@"" inDirectory:@"bin"]
#define LDID [[NSBundle mainBundle] pathForResource:@"ldid" ofType:@"" inDirectory:@"bin"]
#define FM [NSFileManager defaultManager]
#define NULLOUT [NSFileHandle fileHandleWithNullDevice]
@interface NSString (specialAdditions)
-(NSString *)cleanedString;
-(NSString *)decryptedPath;
@end