17 lines
383 B
C
17 lines
383 B
C
|
|
//
|
||
|
|
// 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
|