1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 #ifndef __APP_DIP_H__
5 #define __APP_DIP_H__
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 //the mobile connect type
12 typedef enum {
13     MOBILE_CONNECT_IDLE,
14     MOBILE_CONNECT_IOS,
15     MOBILE_CONNECT_ANDROID,
16 } MOBILE_CONN_TYPE_E;
17 
18 void app_dip_init(void);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif
25 
26