📄 card.h
字号:
/* * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. * All rights reserved. * * This software is copyrighted by and is the sole property of * VIA Networking Technologies, Inc. This software may only be used * in accordance with the corresponding license agreement. Any unauthorized * use, duplication, transmission, distribution, or disclosure of this * software is expressly forbidden. * * This software is provided by VIA Networking Technologies, Inc. "as is" * and any express or implied warranties, including, but not limited to, the * implied warranties of merchantability and fitness for a particular purpose * are disclaimed. In no event shall VIA Networking Technologies, Inc. * be liable for any direct, indirect, incidental, special, exemplary, or * consequential damages. * * File: card.h * * Purpose: Provide functions to setup NIC operation mode * * Author: Tevin Chen * * Date: May 21, 1996 * */ #ifndef __CARD_H__#define __CARD_H__#if !defined(__TTYPE_H__)#include "ttype.h"#endif/*--------------------- Export Definitions -------------------------*//*--------------------- Export Classes ----------------------------*/// Init card typetypedef enum _CARD_PHY_TYPE { PHY_TYPE_AUTO=0, PHY_TYPE_11B, PHY_TYPE_11G, PHY_TYPE_11A} CARD_PHY_TYPE, DEF* PCARD_PHY_TYPE;typedef enum _CARD_OP_MODE { OP_MODE_INFRASTRUCTURE=0, OP_MODE_ADHOC, OP_MODE_AP, OP_MODE_UNKNOWN} CARD_OP_MODE, *PCARD_OP_MODE;#define CB_MAX_CHANNEL_24G 14//#define CB_MAX_CHANNEL_5G 24#define CB_MAX_CHANNEL_5G 42 //[20050104] add channel9(5045MHz), 41==>42#define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)/*--------------------- Export Variables --------------------------*/ /*--------------------- Export Functions --------------------------*/#ifdef __cplusplusextern "C" { /* Assume C declarations for C++ */#endif /* __cplusplus */BOOL CARDbSetMediaChannel(PVOID pDeviceHandler, UINT uConnectionChannel);void CARDvSetRSPINF(PVOID pDeviceHandler, BYTE byBBType);void vUpdateIFS(PVOID pDeviceHandler);void CARDvUpdateBasicTopRate(PVOID pDeviceHandler);BOOL CARDbAddBasicRate(PVOID pDeviceHandler, WORD wRateIdx);BOOL CARDbIsOFDMinBasicRate(PVOID pDeviceHandler);void CARDvAdjustTSF(PVOID pDeviceHandler, BYTE byRxRate, QWORD qwBSSTimestamp, QWORD qwLocalTSF);BOOL CARDbGetCurrentTSF (PVOID pDeviceHandler, PQWORD pqwCurrTSF);BOOL CARDbClearCurrentTSF(PVOID pDeviceHandler);void CARDvSetFirstNextTBTT(PVOID pDeviceHandler, WORD wBeaconInterval);void CARDvUpdateNextTBTT(PVOID pDeviceHandler, QWORD qwTSF, WORD wBeaconInterval);QWORD CARDqGetNextTBTT(QWORD qwTSF, WORD wBeaconInterval); QWORD CARDqGetTSFOffset(BYTE byRxRate, QWORD qwTSF1, QWORD qwTSF2);BOOL CARDbRadioPowerOff(PVOID pDeviceHandler); BOOL CARDbRadioPowerOn(PVOID pDeviceHandler);BYTE CARDbyGetPktType(PVOID pDeviceHandler);void CARDvSetBSSMode(PVOID pDeviceHandler);BOOLCARDbChannelSwitch ( IN PVOID pDeviceHandler, IN BYTE byMode, IN BYTE byNewChannel, IN BYTE byCount );#ifdef __cplusplus} /* End of extern "C" { */#endif /* __cplusplus */#endif // __CARD_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -