summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h')
-rwxr-xr-xlibs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h
new file mode 100755
index 0000000..f73c91a
--- /dev/null
+++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/IDOBindEnum.h
@@ -0,0 +1,49 @@
1//
2// IDOBindEnum.h
3// IDOBluetoothInternal
4//
5// Created by 何东阳 on 2019/8/3.
6// Copyright © 2019 何东阳. All rights reserved.
7//
8
9#ifndef IDOBindEnum_h
10#define IDOBindEnum_h
11
12/**
13 * 绑定状态枚举
14 * Binding status enumeration
15 */
16typedef NS_ENUM(NSInteger, IDO_BIND_STATUS) {
17 /**
18 * 绑定失败
19 * Binding failed
20 */
21 IDO_BLUETOOTH_BIND_FAILED = 0,
22
23 /**
24 * 绑定成功
25 * Binding succeeded
26 */
27 IDO_BLUETOOTH_BIND_SUCCESS,
28
29 /**
30 * 已经绑定
31 * Already bound
32 */
33 IDO_BLUETOOTH_BINDED,
34
35 /**
36 * 需要授权绑定
37 * Need authorization binding
38 */
39 IDO_BLUETOOTH_NEED_AUTH,
40
41 /**
42 * 拒绝绑定
43 * Rejected binding
44 */
45 IDO_BLUETOOTH_REFUSED_BINDED,
46
47};
48
49#endif /* IDOBindEnum_h */