Path: blob/master/ALFA-W1F1/RTL8814AU/include/cmd_osdep.h
1307 views
/******************************************************************************1*2* Copyright(c) 2007 - 2017 Realtek Corporation.3*4* This program is free software; you can redistribute it and/or modify it5* under the terms of version 2 of the GNU General Public License as6* published by the Free Software Foundation.7*8* This program is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for11* more details.12*13*****************************************************************************/14#ifndef __CMD_OSDEP_H_15#define __CMD_OSDEP_H_161718extern sint _rtw_init_cmd_priv(struct cmd_priv *pcmdpriv);19extern sint _rtw_init_evt_priv(struct evt_priv *pevtpriv);20extern void _rtw_free_evt_priv(struct evt_priv *pevtpriv);21extern void _rtw_free_cmd_priv(struct cmd_priv *pcmdpriv);22extern sint _rtw_enqueue_cmd(_queue *queue, struct cmd_obj *obj, bool to_head);23extern struct cmd_obj *_rtw_dequeue_cmd(_queue *queue);2425#endif262728