clean build file
This commit is contained in:
parent
d4056381da
commit
9aab2a4431
58 changed files with 3706 additions and 55 deletions
25
client/platforms/macos/ios_controller_wrapper.h
Normal file
25
client/platforms/macos/ios_controller_wrapper.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#import <NetworkExtension/NetworkExtension.h>
|
||||
#import <NetworkExtension/NETunnelProviderSession.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
//#include <UIKit/UIKit.h>
|
||||
#include <Security/Security.h>
|
||||
|
||||
class IosController;
|
||||
|
||||
@interface IosControllerWrapper : NSObject {
|
||||
IosController *cppController;
|
||||
}
|
||||
|
||||
- (instancetype)initWithCppController:(IosController *)controller;
|
||||
- (void)vpnStatusDidChange:(NSNotification *)notification;
|
||||
- (void)vpnConfigurationDidChange:(NSNotification *)notification;
|
||||
|
||||
@end
|
||||
|
||||
typedef void (^DocumentPickerClosedCallback)(NSString *path);
|
||||
|
||||
//@interface DocumentPickerDelegate : NSObject <UIDocumentPickerDelegate>
|
||||
|
||||
//@property (nonatomic, copy) DocumentPickerClosedCallback documentPickerClosedCallback;
|
||||
|
||||
//@end
|
||||
Loading…
Add table
Add a link
Reference in a new issue