configNet.h
上传用户:yuanda199
上传日期:2022-06-26
资源大小:412k
文件大小:2k
源码类别:

VxWorks

开发平台:

C/C++

  1. /*
  2.     EXTERNAL SOURCE RELEASE on 12/03/2001 3.0 - Subject to change without notice.
  3. */
  4. /*
  5.     Copyright 2001, Broadcom Corporation
  6.     All Rights Reserved.
  7.     
  8.     This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
  9.     the contents of this file may not be disclosed to third parties, copied or
  10.     duplicated in any form, in whole or in part, without the prior written
  11.     permission of Broadcom Corporation.
  12.     
  13. */
  14. /* configNet.h - Network configuration header file */
  15. /* Copyright 1984-1997 Wind River Systems, Inc. */
  16. /*
  17. modification history
  18. --------------------
  19. 01b,30dec99,alp  Added Support for SPR#29948
  20. 01a,20aug99,vnk  written for idt by Teamf1 Inc.
  21. */
  22. #ifndef INCconfigNeth
  23. #define INCconfigNeth
  24. #include "vxWorks.h"
  25. #include "end.h"
  26. #ifdef INCLUDE_IL_END
  27. #define IL_LOAD_FUNC   il_load     /* driver external interface */
  28. #define IL_LOAD_STRING ""
  29. IMPORT END_OBJ* IL_LOAD_FUNC (char*, void*);
  30. #endif /* INCLUDE_IL_END */
  31. #if defined(INCLUDE_ET0_END) || defined(INCLUDE_ET1_END)
  32. #ifdef BROADCOM_BSP
  33. #define ET_LOAD_FUNC   sysEtEndLoad     /* driver external interface */
  34. #else
  35. #define ET_LOAD_FUNC   et_load     /* driver external interface */
  36. #endif
  37. #define ET_LOAD_STRING ""
  38. IMPORT END_OBJ* ET_LOAD_FUNC (char*, void*);
  39. #endif /* INCLUDE_ET_END */
  40. #ifdef INCLUDE_ET_END
  41. #define ET_LOAD_FUNC   et_load     /* driver external interface */
  42. #define ET_LOAD_STRING ""
  43. IMPORT END_OBJ* ET_LOAD_FUNC (char*, void*);
  44. #endif /* INCLUDE_ET_END */
  45. END_TBL_ENTRY endDevTbl [] =
  46.     {
  47. #ifdef INCLUDE_IL_END
  48.     {0, IL_LOAD_FUNC, IL_LOAD_STRING, 0,
  49.     NULL, FALSE},
  50. #endif /* INCLUDE_IL_END */
  51. #ifdef INCLUDE_ET0_END
  52.     {0, ET_LOAD_FUNC, ET_LOAD_STRING, 0,
  53.     NULL, FALSE}, 
  54. #endif
  55. #ifdef INCLUDE_ET1_END
  56.     {1, ET_LOAD_FUNC, ET_LOAD_STRING, 0,
  57.     NULL, FALSE},
  58. #endif /* INCLUDE_ET_END */
  59.     {0, END_TBL_END, NULL, 0, NULL, FALSE},
  60.     };
  61. #endif /* INCconfigNeth */