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