home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ndissrc.zip / dm9008.rc < prev    next >
Text File  |  1998-07-01  |  2KB  |  78 lines

  1. #ifdef RC_INVOKED
  2. #include <windows.h>
  3. #include <ntverp.h>
  4. #endif
  5. //#include "version.h"
  6. //-----------------------------------------------
  7. // the following lines are specific to this file
  8. //-----------------------------------------------
  9.  
  10. // VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  11. // and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  12. // The strings don't need a '\0', since common.ver has them.
  13.  
  14. #define VER_FILETYPE    VFT_DRV
  15.  
  16. #define VER_FILESUBTYPE VFT2_DRV_NETWORK
  17.  
  18. // Undefine the MS company name
  19. #ifdef VER_COMPANYNAME_STR
  20. #undef VER_COMPANYNAME_STR
  21. #endif
  22.  
  23. // Undefine the MS product name
  24. #ifdef VER_PRODUCTNAME_STR
  25. #undef VER_PRODUCTNAME_STR
  26. #endif
  27.  
  28. // Define our own company and product name
  29. #define VER_COMPANYNAME_STR         COMPANYNAME
  30. #define VER_PRODUCTNAME_STR         PRODUCTNAME
  31.  
  32. // Define our own file name and description
  33. #define VER_FILEDESCRIPTION_STR     FILEDESCRIPTION
  34. #define VER_INTERNALNAME_STR        INTERNALNAME
  35. #define VER_ORIGINALFILENAME_STR    ORIGINALFILENAME
  36.  
  37. // Undefine the MS copyright years
  38. #ifdef VER_LEGALCOPYRIGHT_YEARS
  39. #undef VER_LEGALCOPYRIGHT_YEARS
  40. #endif
  41.  
  42. #define COMPANYNAME         "DAVICOM Semiconductor, Inc."
  43.  
  44. #define PRODUCTNAME         "UMC UM9008 network driver"
  45.  
  46. #define FILEDESCRIPTION     "NDIS 4.0 driver"
  47.  
  48. #define INTERNALNAME        "UM9008.SYS"
  49. #define ORIGINALFILENAME    "UM9008.SYS"
  50.  
  51. #define LEGALCOPYRIGHT      "Copyright\251 DAVICOM Semiconductor Inc."
  52.  
  53. #define VENDORDESCRIPTOR    PRODUCTNAME
  54.  
  55. // Define our own copyright years
  56. #define VER_LEGALCOPYRIGHT_YEARS    "1994-1999"
  57.  
  58. // Define our own copyright string
  59. #define VER_LEGALCOPYRIGHT_STR  LEGALCOPYRIGHT ", " VER_LEGALCOPYRIGHT_YEARS ", "  " All Rights Reserved."
  60.  
  61. // Define our driver version
  62. #define VER_FILEVERSION         4,00,00
  63. #define VER_FILEVERSION_STR     "V4.00"
  64.  
  65. #undef VER_PRODUCTVERSION
  66. #undef VER_PRODUCTVERSION_STR
  67.  
  68. #define VER_PRODUCTVERSION       VER_FILEVERSION
  69. #define VER_PRODUCTVERSION_STR  VER_FILEVERSION_STR
  70.  
  71. #ifdef RC_INVOKED
  72. #include "common.ver"
  73. // put the next line inside this ifdef because
  74. // we include this file in request.c
  75. // This supplies the GUID support
  76. //NdisMofResource         MOFDATA         dm9pci.bmf
  77. #endif
  78.