📄 confignet.h
字号:
/* configNet.h - network configuration header *//* Copyright 1984-1999 Wind River Systems, Inc. *//*modification history--------------------01b,12jun02,kab SPR 74987: cplusplus protection01a,10oct99,mtl written from yk 750 by teamF1*/ #if (defined(INCLUDE_END) && defined(INCLUDE_NETWORK))#ifndef INCnetConfigh#define INCnetConfigh#ifdef __cplusplus extern "C" {#endif/* includes */#include "vxWorks.h"#include "end.h"/* defines *//* Primary network device */#define END_LOAD_FUNC_PRI SYS_END_LOAD_FUNC_PRI /* sp.h */#define END_BUFF_LOAN_PRI SYS_END_BUFF_LOAN_PRI /* sp.h *//* Secondary network device *//* secondary devices are currently unsupported in this release *//* The END_LOAD_STRING is defined empty and created dynamicaly */#define END_LOAD_STRING "" /* created in sys<device>End.c *//* 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 */#if defined(INCLUDE_PRIMARY_END)IMPORT END_OBJ * END_LOAD_FUNC_PRI (char *, void*);#endif/* each entry will be processed by muxDevLoad() */END_TBL_ENTRY endDevTbl [] = {#if defined(INCLUDE_PRIMARY_END) {0, END_LOAD_FUNC_PRI, END_LOAD_STRING, END_BUFF_LOAN_PRI, NULL},#endif {0, END_TBL_END, NULL, 0, NULL}, /* must be last */ };#endif /* INCnetConfigh */#ifdef __cplusplus }#endif#endif /* (defined (INCLUDE_END) && defined (INCLUDE_NETWORK)) */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -