copy from iOS/Xamarin/ESVideoOnXamarin/ESVideoOnXamarin/ESOnUtlis.h
copy to iOS/Xamarin/LCOnDemo/LCOnDemo/LCSDK/LCUtlis.h
File was copied from iOS/Xamarin/ESVideoOnXamarin/ESVideoOnXamarin/ESOnUtlis.h |
| | |
| | | // |
| | | // ESOnUtlis.h |
| | | // ESVideoPhoneSDKDemo |
| | | // LCUtlis.h |
| | | // LCOnDemo |
| | | // |
| | | // Created by 陈嘉乐 on 2021/3/11. |
| | | // Copyright © 2021 eTouchSky. All rights reserved. |
| | | // Created by 陈嘉乐 on 2021/5/12. |
| | | // |
| | | |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #define TP_SYSTEM_VERSION ([[[UIDevice currentDevice] systemVersion] floatValue]) |
| | | //#define IOS6 ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) |
| | |
| | | #define WEAKSELF_AT __weak __typeof(&*self)weakSelf_AT = self; |
| | | #define HEXCOLORA(rgbValue, a) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16)) / 255.0 green:((float)((rgbValue & 0xFF00) >> 8)) / 255.0 blue:((float)(rgbValue & 0xFF)) / 255.0 alpha:a] |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #define RTSP_Result_String(enum) [@[ @"0", @"1", @"2", @"3", @"4", @"5", @"6", @"7", @"99", @"100" ] objectAtIndex:enum] |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface ESOnUtlis : NSObject |
| | | @interface LCUtlis : NSObject |
| | | |
| | | @end |
| | | |