Private
Public Access
1
0

Initial commit

Message receiving works, sending sort of works
This commit is contained in:
James Magahern
2018-11-12 20:10:46 -08:00
commit 58777807bc
17 changed files with 1616 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// MessagesHelperProtocol.h
// MessagesHelpers
//
// Created by Jeremy Payne on 7/10/12.
// Copyright (c) 2012 Apple. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol SOAPlugInControllerProtocol <NSObject>
- (oneway void)connectPlugIn:(NSString *)plugInName withConnectionHandler:(void (^)(NSXPCListenerEndpoint *))replyHandler;
- (void)reconnect;
@end