⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 precomp.h

📁 Windows CE 6.0 BSP for VOIP sample phone. Intel PXA270 platform.
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES.
//
/** @file precomp.h
 *  @This file includes all the necessary header files for the MrvDrv NIDS 
 *   driver
 *
 *  Copyright (c) Marvell Semiconductor, Inc. 
 */

#ifndef _PRECOMP_H_
#define _PRECOMP_H_

/*
===============================================================================
            INCLUDE FILES
===============================================================================
*/
#include <ndis.h>

#if DBG
#define MRVL_USE_DBG        // Turn on debug info
#endif


// jeff.spurgat 2003-04-02
// these were not defined in WinCE provided header file ntdndis.h
#ifdef UNDER_CE
#define fNDIS_GUID_ALLOW_READ       0x00000020
#define fNDIS_GUID_ALLOW_WRITE      0x00000040
#endif // UNDER_CE

#include "ntddndis.h"
	
#ifdef NDIS50_MINIPORT
#define B_SUPPORTED_RATES		8
#define G_SUPPORTED_RATES		14
#define NDIS_SUPPORTED_RATES	G_SUPPORTED_RATES
#endif 

#ifdef NDIS51_MINIPORT
#include "ndisdef.h"      // 802.11-related NDIS definitions needed in NDIS 5.0
#endif // #ifndef NDIS51_MINIPORT

#include "dsdef.h"        // Data structure definition
#include "macrodef.h"     // Macro definition
#include "ixstatus.h"	  // IGX status return codes.
#include "cfmacreg.h"     // Compact flash MAC register
#include "hostcmd.h"      // Host command
#include "oid.h"          // common OID header between driver and application
#include "eagledev.h"     // Device Object definition
#include "IgxBug.h"        // debug macros
#include "cf_Ifc.h"		  // Compact flash interface definition.
#include "operfunc.h"     // MrvDrv operation functions  definition
#include "procdef.h"      // NDIS Miniport procedure definition


#ifdef UNDER_CE			  // PJG: no such header in XP ddk.
#include <cardserv.h>
#endif

#include "dot11mib.h"

#ifdef CCX
#include "wlan_ccx.h"
#endif

#endif

⌨️ 快捷键说明

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