mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
19 lines
371 B
Objective-C
19 lines
371 B
Objective-C
//
|
|
// QTHelperProtocol.h
|
|
// CocoaSplit
|
|
//
|
|
// Created by Zakk on 11/10/12.
|
|
// Copyright (c) 2012 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol QTHelperProtocol
|
|
- (void)listCaptureDevices:(void (^)(NSArray *r_devices))reply;
|
|
- (void)startXPCCaptureSession:(NSString *)captureID;
|
|
- (void)stopXPCCaptureSession;
|
|
|
|
|
|
- (void)testMethod;
|
|
|
|
@end
|