TrollStore/Shared/TSListControllerShared.h

17 lines
603 B
C
Raw Normal View History

2022-09-22 23:38:58 +08:00
#import <UIKit/UIKit.h>
#import <Preferences/PSListController.h>
#import <Preferences/PSSpecifier.h>
@interface TSListControllerShared : PSListController
- (BOOL)isTrollStore;
- (NSString*)getTrollStoreVersion;
- (void)downloadTrollStoreAndRun:(void (^)(NSString* localTrollStoreTarPath))doHandler;
2022-09-22 23:38:58 +08:00
- (void)installTrollStorePressed;
- (void)updateTrollStorePressed;
- (void)rebuildIconCachePressed;
- (void)refreshAppRegistrationsPressed;
- (void)uninstallPersistenceHelperPressed;
- (void)handleUninstallation;
2023-01-21 20:52:39 +08:00
- (NSMutableArray*)argsForUninstallingTrollStore;
2022-09-22 23:38:58 +08:00
- (void)uninstallTrollStorePressed;
@end