blob: f73c91a8aef14c2a0428742df52aba6f9fc30df9 (
plain)
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
|
//
// IDOBindEnum.h
// IDOBluetoothInternal
//
// Created by 何东阳 on 2019/8/3.
// Copyright © 2019 何东阳. All rights reserved.
//
#ifndef IDOBindEnum_h
#define IDOBindEnum_h
/**
* 绑定状态枚举
* Binding status enumeration
*/
typedef NS_ENUM(NSInteger, IDO_BIND_STATUS) {
/**
* 绑定失败
* Binding failed
*/
IDO_BLUETOOTH_BIND_FAILED = 0,
/**
* 绑定成功
* Binding succeeded
*/
IDO_BLUETOOTH_BIND_SUCCESS,
/**
* 已经绑定
* Already bound
*/
IDO_BLUETOOTH_BINDED,
/**
* 需要授权绑定
* Need authorization binding
*/
IDO_BLUETOOTH_NEED_AUTH,
/**
* 拒绝绑定
* Rejected binding
*/
IDO_BLUETOOTH_REFUSED_BINDED,
};
#endif /* IDOBindEnum_h */
|