confignet.h

来自「博创PXA270-S开发箱的VxWorks BSP驱动(含注释)」· C头文件 代码 · 共 61 行

H
61
字号
/* configNet.h - template for network configuration header file *//* Copyright 2002 Wind River Systems, Inc. *//*TODO -  Remove the template modification history and begin a new history        starting with version 01a and growing the history upward with        each revision.modification history--------------------01a,21may02,scm  written.*/#ifndef INCconfigNeth#define INCconfigNeth#ifdef __cplusplusextern "C" {#endif#include "vxWorks.h"#include "end.h"#define DM_LOAD_FUNC   sysDM9000EndLoad/* The END_LOAD_STRING is defined empty and created dynamicaly */#define DM_LOAD_STRING ""                      #define DM_BUFF_LOAN   1/* * The dm9000End initialization string format is: * *  */IMPORT END_OBJ * DM_LOAD_FUNC (char *, void *);END_TBL_ENTRY endDevTbl [] =    {/* Entries that can be filled in dynamically when cards are found */#ifdef INCLUDE_DM_END        { 0, DM_LOAD_FUNC, DM_LOAD_STRING, DM_BUFF_LOAN, NULL, FALSE},#endif /* INCLUDE_DM_END *//* End of table marker */    { 0, END_TBL_END, NULL, 0, NULL, FALSE}, /* ALWAYS EMPTY - never allocated */    };#ifdef __cplusplus}#endif#endif /* INCconfigNeth */

⌨️ 快捷键说明

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