home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / classsrc.pak / VERSION.RC < prev   
Text File  |  1997-07-23  |  2KB  |  48 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  VERSION.RC                                                            */
  4. /*                                                                        */
  5. /*  Copyright (c) 1993, 1994 Borland International                        */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*------------------------------------------------------------------------*/
  9.  
  10. #include <ver.h>
  11.  
  12.  
  13. VS_VERSION_INFO VERSIONINFO
  14. FILEFLAGSMASK   VS_FF_DEBUG | VS_FF_PRERELEASE
  15. FILEFLAGS       VS_FF_PRERELEASE | VS_FF_SPECIALBUILD
  16. #ifndef WIN32
  17. FILEOS          VOS_DOS_WINDOWS16
  18. #else
  19. FILEOS          VOS_NT_WINDOWS32
  20. #endif
  21.  
  22. FILETYPE        VFT_DLL
  23. FILESUBTYPE     VS_USER_DEFINED
  24.  
  25. BEGIN
  26.   BLOCK "StringFileInfo"
  27.   BEGIN
  28.     BLOCK "040904E4"
  29.     BEGIN
  30.       VALUE "CompanyName", "Borland International\0"
  31.       VALUE "FileDescription", "BIDS Class Library\0"
  32.       VALUE "FileVersion", "1.00\0"
  33.       VALUE "InternalName", "BIDS Class Library\0"
  34.       VALUE "LegalCopyright", "Copyright Borland International 1993\0"
  35.       VALUE "ProductName", "Borland C++ 4.0\0"
  36.       VALUE "ProductVersion", "4.2"
  37.       VALUE "SpecialBuild", "05 Nov 1994 09:43:34  "
  38.     END
  39.  
  40.   END
  41.  
  42.   BLOCK "VarFileInfo"
  43.   BEGIN                               /*  Language   |    Translation       */
  44.     VALUE "Translation", 0x409, 1252  /* U.S. English, Windows Multilingual */
  45.   END
  46. END
  47.  
  48.