1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 2 /* Copyright(c) 2007 - 2011 Realtek Corporation. */ 3 4 #ifndef __MLME_OSDEP_H_ 5 #define __MLME_OSDEP_H_ 6 7 #include "osdep_service.h" 8 #include "drv_types.h" 9 10 void rtw_init_mlme_timer(struct adapter *padapter); 11 void rtw_os_indicate_disconnect(struct adapter *adapter); 12 void rtw_os_indicate_connect(struct adapter *adapter); 13 void rtw_os_indicate_scan_done(struct adapter *padapter, bool aborted); 14 void rtw_report_sec_ie(struct adapter *adapter, u8 authmode, u8 *sec_ie); 15 16 void rtw_reset_securitypriv(struct adapter *adapter); 17 void indicate_wx_scan_complete_event(struct adapter *padapter); 18 19 #endif /* _MLME_OSDEP_H_ */ 20