1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef __OBEX_API_H__
6 #define __OBEX_API_H__
7 
8 #include "bluetooth.h"
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 typedef enum {
15     BTIF_OBEX_SESSION_ROLE_CLIENT = 0,
16     BTIF_OBEX_SESSION_ROLE_SERVER, // 1
17 } btif_obex_session_role_t;
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* __OBEX_API_H__ */
24 
25