wlan_ccx.h

来自「marvell wifi driver CF-8385PN-NDIS-ARM4」· C头文件 代码 · 共 45 行

H
45
字号
/** @file wlan_11d.h *  @brief This header file contains data structures and  *  function declarations of wlan_ccx.c    * *  Copyright (c) Marvell Semiconductor, Inc., 2003-2005 *//*************************************************************Change log:	10/11/05: add Doxygen format comments  ************************************************************/#ifndef _WLAN_CCX_H#define _WLAN_CCX_H#ifdef CCX// For WinCE +++#define u8 UCHAR// For WinCE ---/** * CCX information for a specific BSS.  Part of the BSS descriptor, setup * during scan interpretation and used if needed in association requests */typedef struct{    u8 ccxEnabled;    u8 maxPowerValid;    u8 maxPower;} CCX_BSS_Info_t;/* Add any additional CCX elments to an association request to the firmware */extern int wlan_ccx_process_association_req(u8** pAssocBuf,                                             CCX_BSS_Info_t* pBSSID,                                            int enableCcxPwrLimit);/* Process any incoming bss elements in a scan response that are CCX related */extern int wlan_ccx_process_bss_elem(CCX_BSS_Info_t* pBSSID, u8* pBssElem);#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?