Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mach_override.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mach_inject_sandbox/AppDelegate.m')
-rw-r--r--mach_inject_sandbox/AppDelegate.m14
1 files changed, 0 insertions, 14 deletions
diff --git a/mach_inject_sandbox/AppDelegate.m b/mach_inject_sandbox/AppDelegate.m
deleted file mode 100644
index 3797ca1..0000000
--- a/mach_inject_sandbox/AppDelegate.m
+++ /dev/null
@@ -1,14 +0,0 @@
-#import "AppDelegate.h"
-#include "mach_inject_bundle/mach_inject_bundle.h"
-
-@implementation AppDelegate
-
-- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
- printf("lol\n");
- mach_error_t err = mach_inject_bundle_pid( [[[NSBundle mainBundle] pathForResource:@"mach_inject_sandbox_bundle"
- ofType:@"bundle"] fileSystemRepresentation],
- getpid() );
- assert( !err );
-}
-
-@end