1 /* 2 * Copyright (C) 2015-2018 Alibaba Group Holding Limited 3 */ 4 5 #ifndef __AWSS_WIFIMGR_H__ 6 #define __AWSS_WIFIMGR_H__ 7 8 #if defined(__cplusplus) /* If this is a C++ compiler, use C linkage */ 9 extern "C" { 10 #endif 11 12 #if defined(AWSS_SUPPORT_AHA) 13 14 enum { 15 SHUB_ERR, 16 SHUB_OK 17 }; 18 19 int wifimgr_process_mcast_get_device_info(void *ctx, void *resource, 20 void *remote, void *request); 21 int wifimgr_process_ucast_get_device_info(void *ctx, void *resource, 22 void *remote, void *request); 23 int wifimgr_process_switch_ap_request(void *ctx, void *resource, void *remote, 24 void *request); 25 26 #endif 27 28 #if defined(__cplusplus) /* If this is a C++ compiler, use C linkage */ 29 } 30 #endif 31 32 #endif 33