revert to run success

This commit is contained in:
Macbook 2024-10-03 23:06:12 +07:00
parent f9138d34c4
commit 36b74ad685
59 changed files with 3698 additions and 12 deletions

View 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