-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a794dc0
commit 94e39e3
Showing
10 changed files
with
312 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+9.92 KB
(130%)
...eproj/project.xcworkspace/xcuserdata/exerhythm.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
// | ||
|
||
#import "RemoteLog.h" | ||
#import "TSUtil.h" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
extern NSString *LSInstallTypeKey; | ||
|
||
@interface LSBundleProxy | ||
@property (nonatomic,readonly) NSString * bundleIdentifier; | ||
@property (nonatomic) NSURL* dataContainerURL; | ||
@property (nonatomic,readonly) NSURL* bundleContainerURL; | ||
-(NSString*)localizedName; | ||
@end | ||
|
||
@interface LSApplicationProxy : LSBundleProxy | ||
+ (instancetype)applicationProxyForIdentifier:(NSString*)identifier; | ||
+ (instancetype)applicationProxyForBundleURL:(NSURL*)bundleURL; | ||
@property NSURL* bundleURL; | ||
@property NSString* bundleType; | ||
@property NSString* canonicalExecutablePath; | ||
@property (nonatomic,readonly) NSDictionary* groupContainerURLs; | ||
@property (nonatomic,readonly) NSArray* plugInKitPlugins; | ||
@property (getter=isInstalled,nonatomic,readonly) BOOL installed; | ||
@property (getter=isPlaceholder,nonatomic,readonly) BOOL placeholder; | ||
@property (getter=isRestricted,nonatomic,readonly) BOOL restricted; | ||
@property (nonatomic,readonly) NSSet* claimedURLSchemes; | ||
@property (nonatomic,readonly) NSString* applicationType; | ||
@end | ||
|
||
@interface LSApplicationWorkspace : NSObject | ||
+ (instancetype)defaultWorkspace; | ||
- (BOOL)registerApplicationDictionary:(NSDictionary*)dict; | ||
- (BOOL)unregisterApplication:(id)arg1; | ||
- (BOOL)_LSPrivateRebuildApplicationDatabasesForSystemApps:(BOOL)arg1 internal:(BOOL)arg2 user:(BOOL)arg3; | ||
- (BOOL)openApplicationWithBundleID:(NSString *)arg1 ; | ||
- (void)enumerateApplicationsOfType:(NSUInteger)type block:(void (^)(LSApplicationProxy*))block; | ||
- (BOOL)installApplication:(NSURL*)appPackageURL withOptions:(NSDictionary*)options error:(NSError**)error; | ||
- (BOOL)uninstallApplication:(NSString*)appId withOptions:(NSDictionary*)options; | ||
@end | ||
|
||
@interface LSEnumerator : NSEnumerator | ||
@property (nonatomic,copy) NSPredicate * predicate; | ||
+ (instancetype)enumeratorForApplicationProxiesWithOptions:(NSUInteger)options; | ||
@end | ||
|
||
@interface LSPlugInKitProxy : LSBundleProxy | ||
@property (nonatomic,readonly) NSString* pluginIdentifier; | ||
@property (nonatomic,readonly) NSDictionary * pluginKitDictionary; | ||
+ (instancetype)pluginKitProxyForIdentifier:(NSString*)arg1; | ||
@end | ||
|
||
@interface MCMContainer : NSObject | ||
+ (id)containerWithIdentifier:(id)arg1 createIfNecessary:(BOOL)arg2 existed:(BOOL*)arg3 error:(id*)arg4; | ||
@property (nonatomic,readonly) NSURL * url; | ||
@end | ||
|
||
@interface MCMDataContainer : MCMContainer | ||
|
||
@end | ||
|
||
@interface MCMAppDataContainer : MCMDataContainer | ||
|
||
@end | ||
|
||
@interface MCMAppContainer : MCMContainer | ||
@end | ||
|
||
@interface MCMPluginKitPluginDataContainer : MCMDataContainer | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@import Foundation; | ||
#import "CoreServices.h" | ||
|
||
extern NSString* getNSStringFromFile(int fd); | ||
extern void printMultilineNSString(NSString* stringToPrint); | ||
extern int spawnRoot(NSString* path, NSArray* args, NSString** stdOut, NSString** stdErr); | ||
extern void killall(NSString* processName, BOOL softly); | ||
extern void respring(void); |
Oops, something went wrong.