2023-10-14 17:08:25 +08:00
|
|
|
//
|
|
|
|
|
// SharePasswordViewController.h
|
|
|
|
|
// Runner
|
|
|
|
|
//
|
|
|
|
|
// Created by DaisyWu on 2023/10/14.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Flutter/Flutter.h>
|
|
|
|
|
|
2023-11-01 14:18:52 +08:00
|
|
|
#import "sysInfo.h"
|
|
|
|
|
#import "UdpHelper.h"
|
|
|
|
|
#import "talk_Class.h"
|
|
|
|
|
#import "Call.h"
|
|
|
|
|
#import "P2pTest.h"
|
|
|
|
|
#import "Opendoor.h"
|
|
|
|
|
#import "HKHTextField.h"
|
|
|
|
|
#import "Pub.h"
|
|
|
|
|
#import "Sformat.h"
|
|
|
|
|
|
|
|
|
|
|
2023-10-14 17:08:25 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2023-11-01 14:18:52 +08:00
|
|
|
|
|
|
|
|
#define SoundOK 0
|
|
|
|
|
#define SoundNotice 1
|
|
|
|
|
#define SoundError 2
|
|
|
|
|
#define SoundAlarm 3
|
|
|
|
|
#define SoundRing 4
|
|
|
|
|
|
|
|
|
|
|
2023-10-16 17:18:10 +08:00
|
|
|
@interface XSFlutterManager : FlutterViewController
|
2023-10-14 17:08:25 +08:00
|
|
|
|
2023-11-01 14:18:52 +08:00
|
|
|
@property (strong, nonatomic) sysInfo *sysinfo;
|
|
|
|
|
@property (strong, nonatomic) UdpHelper *udp;
|
|
|
|
|
@property (strong, nonatomic) talk_Class *talk;
|
|
|
|
|
@property (strong, nonatomic) HKHTextField *activeTextField;
|
|
|
|
|
|
|
|
|
|
|
2023-10-14 17:08:25 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|