home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / CLASSSRC.PAK / VERSION.RC < prev   
Encoding:
Text File  |  1993-12-02  |  1.6 KB  |  48 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  VERSION.RC                                                            */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1993                                  */
  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.1"
  37.       VALUE "SpecialBuild", "07 Jul 1993 18:18:16  "
  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.