📄 confignet.h
字号:
/* configNet.h - SBC8240 network configuration header *//* Copyright 1984-2001 Wind River Systems, Inc. *//*modification history--------------------01b,12jun02,kab SPR 74987: cplusplus protection01a,26mar01,g_h written.*/ #ifndef __INCconfigNeth#define __INCconfigNeth#ifdef __cplusplus extern "C" {#endif#include "vxWorks.h"#include "end.h"#include "config.h"#ifdef INCLUDE_FEI82557END#define FEI_LOAD_FUNC sysFei82557EndLoad /* driver external interface */#define FEI_BUFF_LOAN 1/* The END_LOAD_STRING is defined empty and created dynamicaly */#define FEI_LOAD_STRING "" /* created in sysFei82557EndLoad */IMPORT END_OBJ * FEI_LOAD_FUNC (char*, void*);#endif /* INCLUDE_FEI82557END */#ifdef INCLUDE_PNIC169END#define PNIC_LOAD_FUNC sysPnic169EndLoad /* driver external interface */#define PNIC_BUFF_LOAN 1/* The END_LOAD_STRING is defined empty and created dynamicaly */#define PNIC_LOAD_STRING "" /* created in sysPnic169EndLoad */IMPORT END_OBJ * PNIC_LOAD_FUNC (char*, void*);#endif /* INCLUDE_PNIC169END *//* bump the number of allowable IP interfaces */#undef IP_MAX_UNITS#define IP_MAX_UNITS (NELEMENTS(endDevTbl) - 1)END_TBL_ENTRY endDevTbl [] = {#ifdef INCLUDE_FEI82557END { 0, FEI_LOAD_FUNC, FEI_LOAD_STRING, FEI_BUFF_LOAN, NULL, FALSE},#endif /* INCLUDE_FEI82557END */#ifdef INCLUDE_PNIC169END { 0, PNIC_LOAD_FUNC, PNIC_LOAD_STRING, PNIC_BUFF_LOAN, NULL, FALSE},#endif /* INCLUDE_PNIC169END */ { 0, END_TBL_END, NULL, 0, NULL, FALSE}, };#ifdef __cplusplus }#endif#endif /* __INCconfigNeth */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -