confignet.h

来自「LoPEC Early Access VxWorks BSP」· C头文件 代码 · 共 41 行

H
41
字号
/* configNet.h - network configuration header *//* Copyright 1984-2000 Wind River Systems, Inc. *//* Copyright 1999-2000 Motorola, Inc. All Rights Reserved *//*modification history--------------------01a,30nov00,djs  Written (from version 01b of mv5100/configNet.h).*/ #ifndef INCnetConfigh#define INCnetConfigh#include "vxWorks.h"#include "end.h"#define END_LOAD_FUNC	sysEndLoad#define END_BUFF_LOAN   1#define END_LOAD_STRING  ""		/* created in sysEnd.c */IMPORT END_OBJ* END_LOAD_FUNC (char*, void*);END_TBL_ENTRY endDevTbl [] =    {        { 0, END_LOAD_FUNC, END_LOAD_STRING, END_BUFF_LOAN, NULL, FALSE},#ifdef INCLUDE_SECONDARY_ENET        { 1, END_LOAD_FUNC, END_LOAD_STRING, END_BUFF_LOAN, NULL, FALSE},#endif /* INCLUDE_SECONDARY_ENET */        { 0, END_TBL_END, NULL, 0, NULL, FALSE},    };/* define IP_MAX_UNITS to the actual number in the table. */#ifndef IP_MAX_UNITS #   define IP_MAX_UNITS            (NELEMENTS(endDevTbl) - 1)#endif  /* ifndef IP_MAX_UNITS */#endif /* INCnetConfigh */

⌨️ 快捷键说明

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