home *** CD-ROM | disk | FTP | other *** search
/ On Hand / On_Hand_From_Softbank_1994_Release_2_Disc_2_1994.iso / 00202 / s / disk3 / vbx.rc_ / vbx.bin
Text File  |  1993-04-28  |  4KB  |  85 lines

  1. //---------------------------------------------------------------------------
  2. //        Copyright (C) 1991-93, Microsoft Corporation
  3. //
  4. // You have a royalty-free right to use, modify, reproduce and distribute
  5. // the Sample Custom Control Files (and/or any modified version) in any way
  6. // you find useful, provided that you agree that Microsoft has no warranty,
  7. // obligation or liability for any Custom Control File.
  8. //---------------------------------------------------------------------------
  9. // Vbx.rcv
  10. //---------------------------------------------------------------------------
  11. // This RC fragment defines version information.  It should be #include'd
  12. // into the component's main .RC file.
  13. //---------------------------------------------------------------------------
  14.  
  15. #ifdef RC31
  16. //---------------------------------------------------------------------------
  17. // Ver.h defines constants needed by the VS_VERSION_INFO structure.
  18. //---------------------------------------------------------------------------
  19. #include <ver.h>
  20.  
  21.  
  22. //---------------------------------------------------------------------------
  23. // The following section defines values used in the version data structure
  24. // for all files, and which do not change.
  25. //---------------------------------------------------------------------------
  26. // Default is privatebuild, #define VER_OFFICALBUILD to get an official build.
  27. #ifndef VER_OFFICALBUILD
  28. #define VER_OFFICALBUILD        | VS_FF_PRIVATEBUILD
  29. #endif
  30.  
  31. // Default is prerelease, #define VER_RELEASE to get a release build.
  32. #ifndef VER_RELEASE
  33. #define VER_RELEASE            | VS_FF_PRERELEASE
  34. #endif
  35.  
  36.  
  37. #ifdef RC_INVOKED
  38. //---------------------------------------------------------------------------
  39. // Now, actually define the resource.
  40. //---------------------------------------------------------------------------
  41. VS_VERSION_INFO             VERSIONINFO
  42. FILEVERSION                VBX_VERSION
  43. PRODUCTVERSION                VBX_VERSION
  44. FILEFLAGSMASK                VS_FFI_FILEFLAGSMASK
  45. FILEFLAGS                (0 VER_OFFICALBUILD VER_RELEASE)
  46. FILEOS                    VOS__WINDOWS16
  47. FILETYPE                VFT_DLL
  48. FILESUBTYPE                VFT2_UNKNOWN
  49. BEGIN
  50.     BLOCK "StringFileInfo"
  51.     BEGIN
  52.         BLOCK "040904E4"
  53.     BEGIN
  54.         VALUE "CompanyName",     VBX_COMPANYNAME
  55.         VALUE "FileDescription", VBX_FILEDESCRIPTION
  56.         VALUE "FileVersion",     VBX_VERSION_STR
  57.         VALUE "InternalName",    VBX_INTERNALNAME
  58.         VALUE "LegalCopyright",  "Copyright \251 Microsoft Corp. 1991-93\0"
  59.         VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Visual Basic\231 is a trademark of Microsoft Corporation. Windows\231 is a trademark of Microsoft Corporation.\0"
  60.         VALUE "OriginalFilename",VBX_ORIGINALFILENAME
  61.         VALUE "ProductName",     VBX_PRODUCTNAME
  62.         VALUE "ProductVersion",  VBX_VERSION_STR
  63.         END
  64.     END
  65.  
  66.     BLOCK "VarFileInfo"
  67.     BEGIN
  68.     //-------------------------------------------------------------------
  69.     // The following line should only be modified for localized versions.
  70.     // It consists of any number of WORD,WORD pairs, with each pair
  71.     // describing a language,codepage combination supported by the file.
  72.     //
  73.     // For example, a file might have values "0x409,1252" indicating that
  74.     // it supports English language (0x409) in the Windows ANSI codepage
  75.     // (1252).
  76.     //-------------------------------------------------------------------
  77.         VALUE "Translation", 0x409, 1252
  78.     END
  79. END
  80.  
  81. #endif    // RC_INVOKED
  82. #endif    // RC31
  83.  
  84. //---------------------------------------------------------------------------
  85.