forked from und3fined/StoreSwitcher2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SSHeader.h
32 lines (28 loc) · 794 Bytes
/
SSHeader.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
@interface SSAccount
//+ (id)_countryCodeFromStorefrontIdentifier:(id)arg1;
- (BOOL)isActive;
- (void)setActive:(BOOL)arg1;
- (BOOL)isLocalAccount;
- (NSString *)firstName;
- (NSString *)lastName;
- (NSString *)accountName;
- (NSString *)storeFrontIdentifier;
@end
@interface SSAccountStore
+ (id)defaultStore;
- (NSArray *)accounts;
//- (id)setActiveAccount:(SSAccount *)arg1 ;
- (BOOL)saveAccount:(id)arg1 verifyCredentials:(BOOL)arg2 error:(id*)arg3;
- (void)removeAccount:(id)arg1 error:(id*)arg2;
@end
@interface SSDevice
+ (id)currentDevice;
- (void)reloadStoreFrontIdentifier;
@end
@interface SKUIApplicationController
- (void)_resetUserInterfaceAfterStoreFrontChange;
@end
@interface SKUIClientContext
+ (id)defaultContext;
- (SKUIApplicationController *)applicationController;
@end