aboutsummaryrefslogtreecommitdiffstats
path: root/Copy Mailto/main.m
diff options
context:
space:
mode:
authorTeddy Wing2018-09-06 00:10:03 +0200
committerTeddy Wing2018-09-06 00:10:03 +0200
commitd35983a3ace2d869aa478d107f475ca835b66e50 (patch)
tree810aae10eb11011af94a03f191776d6bbbb14702 /Copy Mailto/main.m
parent4e2eea2beb2705e028226fe0300d17a7e223ec3c (diff)
downloadCopy-Mailto-d35983a3ace2d869aa478d107f475ca835b66e50.tar.bz2
Rename the project directory "CopyMailto" -> "Copy Mailto"
Diffstat (limited to 'Copy Mailto/main.m')
-rw-r--r--Copy Mailto/main.m19
1 files changed, 19 insertions, 0 deletions
diff --git a/Copy Mailto/main.m b/Copy Mailto/main.m
new file mode 100644
index 0000000..e61f04e
--- /dev/null
+++ b/Copy Mailto/main.m
@@ -0,0 +1,19 @@
+//
+// main.m
+// CopyMailto
+//
+// Created by tw on 9/5/18.
+// Copyright © 2018 tw. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+#import "DefaultURLHandler.h"
+
+int main(int argc, const char * argv[]) {
+ if (argc == 2 && strcmp(argv[1], "--set-url-handler") == 0) {
+ return [DefaultURLHandler setDefaultURLHandler];
+ }
+
+ return NSApplicationMain(argc, argv);
+}