1
2
3
4
5
6
7
8
9
10
11
12
13
14 #ifndef __MLME_OSDEP_H_
15 #define __MLME_OSDEP_H_
16
17 #include "osdep_service.h"
18 #include "drv_types.h"
19
20 void r8712_init_mlme_timer(struct _adapter *padapter);
21 void r8712_os_indicate_disconnect(struct _adapter *adapter);
22 void r8712_os_indicate_connect(struct _adapter *adapter);
23 void r8712_report_sec_ie(struct _adapter *adapter, u8 authmode, u8 *sec_ie);
24 int r8712_recv_indicatepkts_in_order(struct _adapter *adapter,
25 struct recv_reorder_ctrl *precvreorder_ctrl,
26 int bforced);
27 void r8712_indicate_wx_assoc_event(struct _adapter *padapter);
28 void r8712_indicate_wx_disassoc_event(struct _adapter *padapter);
29
30 #endif
31