DBEEPER.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * DBEEPER.RC
  3.  * Beeper Automation Object #5 Chapter 14
  4.  *
  5.  * Resource definitions
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #include <windows.h>
  14. #include "beeper.h"
  15. #ifdef WIN32
  16. #include <winver.h>
  17. #else
  18. #include <ver.h>
  19. #endif
  20. VS_VERSION_INFO VERSIONINFO
  21.  FILEVERSION        1,0,0,0
  22.  PRODUCTVERSION     1,0,0,0
  23.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  24. #ifndef DEBUG
  25.  FILEFLAGS          0
  26. #else
  27.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  28. #endif
  29. #ifdef WIN32
  30.  FILEOS             VOS_NT_WINDOWS32
  31. #else
  32.  FILEOS             VOS_DOS_WINDOWS16
  33. #endif
  34.  FILETYPE           VFT_DLL
  35.  FILESUBTYPE        VFT_UNKNOWN
  36.  BEGIN
  37.    BLOCK "StringFileInfo"
  38.     BEGIN
  39.     #ifdef UNICODE
  40.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  41.     #else
  42.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  43.     #endif
  44.       BEGIN
  45.        VALUE "CompanyName",     "Microsoft Corporation", ""
  46.        VALUE "FileDescription", "Beeper Automation Object #5", ""
  47.        VALUE "FileVersion",     "1.00", ""
  48.        VALUE "InternalName",    "DBEEPER5.DLL", ""
  49.        VALUE "LegalCopyright",  "Copyright 251 1993-1995 Microsoft Corp.", ""
  50.        VALUE "OriginalFilename","DBEEPER5.DLL", ""
  51.        VALUE "ProductName",     "Beeper Automation Object #5", ""
  52.        VALUE "ProductVersion",  "1.00"
  53.       END
  54.    END
  55.  
  56.    BLOCK "VarFileInfo"
  57.     BEGIN
  58.     #ifdef UNICODE
  59.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  60.     #else
  61.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  62.     #endif
  63.     END 
  64.  END