-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpwnHelperClass.h
41 lines (38 loc) · 1.4 KB
/
pwnHelperClass.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// pwnHelperClass.h
// Seas0nPass
//
// Created by Kevin Bradley on 4/16/09.
// Copyright 2009 nito, LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PatchedFile.h"
#import "FWBundle.h"
@interface pwnHelperClass : NSObject {
NSString *runPath;
NSString *theDownloadPath;
NSDictionary *processDict;
FWBundle *currentBundle;
}
@property (nonatomic, assign) FWBundle *currentBundle;
- (void)useAppleServer;
- (int)permissionedCopy:(NSString *)inputFile toPath:(NSString *)outputFile;
- (NSDictionary *)processDict;
- (void)setProcessDict:(NSDictionary *)value;
- (int)patchDmg:(NSString *)theDMG;
- (void)changeStatus:(NSString *)theStatus;
- (NSString *)runPath;
- (void)setRunPath:(NSString *)value;
- (void)installPackages:(NSString *)theDMG;
- (NSString *)theDownloadPath;
- (BOOL)enableAssistiveDevices;
- (int)fileSystemPatches:(NSString *)theVolume;
- (int)performAction:(NSDictionary *)actionDict onVolume:(NSString *)theVolume;
- (int)patchAction:(NSDictionary *)actionDict toVolume:(NSString *)theVolume;
- (int)addAction:(NSDictionary *)actionDict toVolume:(NSString *)theVolume;
- (int)ownerAction:(NSDictionary *)actionDict toVolume:(NSString *)theVolume;
- (int)permissionAction:(NSDictionary *)actionDict toVolume:(NSString *)theVolume;
- (int)extractAction:(NSDictionary *)actionDict toVolume:(NSString *)theVolume;
- (void)useCydiaServer;
- (int)disableBetaExpiry:(NSString *)theVolume;
@end