halether.h
来自「CEPC的引导代码,在BOIS基础上自定义引导WINCE内核,基于VC的工程」· C头文件 代码 · 共 46 行
H
46 行
/*++
THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.
Copyright (c) 1995-2000 Microsoft Corporation. All rights reserved.
Module Name:
Abstract:
Functions:
Notes:
--*/
#ifndef _ETHERNET_H
#define _ETHERNET_H 1
/*
* Addressing info struct. We don't ARP for unknown ethernet addresses, so
* even the ethernet address must be configured.
*/
typedef struct _EDBG_ADDR {
DWORD dwIP;
USHORT wMAC[3];
USHORT wPort;
} EDBG_ADDR;
#define EDBG_SYSINTR_NOINTR 0xFFFFFFFF
// The following defs can be used for platforms which support multiple adapter types.
// Identifiers are provided here for drivers which are built in common\oak\drivers\ethdbg.
// Any platform specific adapter types can be identified based off of EDBG_ADAPTER_OEM.
#define EDBG_ADAPTER_SMC9000 0
#define EDBG_ADAPTER_NE2000 1
#define EDBG_ADAPTER_OEM 16
#endif // _ETHERNET_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?