Blame view

HDFwear/3rd/RTKOTASDK/RTKOTASDK.framework/Headers/RTKOTABin.h 747 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  //
  //  RTKOTABin.h
  //  RTKOTASDK
  //
  //  Created by jerome_gu on 2019/4/16.
  //  Copyright © 2019 Realtek. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  
  #ifdef RTK_SDK_IS_STATIC_LIBRARY
  #import "RTKOTAFormat.h"
  #else
  #import <RTKOTASDK/RTKOTAFormat.h>
  #endif
  
  
  NS_ASSUME_NONNULL_BEGIN
  
  /**
   * A general OTA bin.
   */
  @interface RTKOTABin : NSObject
  
  /* Bin type */
  @property (readonly) RTKOTAImageType type;
  
  
  /**
   * Version in integer.
   */
  @property (readonly) uint32_t version;
  
  
  /**
   * The binary name.
   */
  @property (readonly) NSString *name;
  
  /**
   * Human-readable version string.
   */
  @property (readonly) NSString *versionString;
  
  
  - (NSComparisonResult)compareVersionWith:(RTKOTABin *)anotherBin;
  
  
  @end
  
  
  NS_ASSUME_NONNULL_END