1 /* 2 * Copyright (C) 2015-2018 Alibaba Group Holding Limited 3 */ 4 5 #ifndef _IOT_DM_API_H_ 6 #define _IOT_DM_API_H_ 7 8 typedef struct { 9 void *mutex; 10 void *cloud_connectivity; 11 void *local_connectivity; 12 iotx_dm_event_callback event_callback; 13 } dm_api_ctx_t; 14 15 #if defined(DEPRECATED_LINKKIT) 16 typedef struct { 17 void *mutex; 18 int devid; 19 lite_cjson_item_t *lite; 20 } dm_api_property_t; 21 #endif 22 23 #endif 24