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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IANIMAL.RC
  3.  * IAnimal Interface DLL Chapter 6
  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. #ifdef WIN32
  15. #include <winver.h>
  16. #else
  17. #include <ver.h>
  18. #endif
  19. VS_VERSION_INFO VERSIONINFO 
  20.  FILEVERSION        1,0,0,0
  21.  PRODUCTVERSION     1,0,0,0
  22.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  23. #ifndef DEBUG
  24.  FILEFLAGS          0
  25. #else
  26.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  27. #endif
  28. #ifdef WIN32
  29.  FILEOS             VOS_NT_WINDOWS32
  30. #else
  31.  FILEOS             VOS_DOS_WINDOWS16
  32. #endif
  33.  FILETYPE           VFT_DLL
  34.  FILESUBTYPE        VFT_UNKNOWN
  35.  BEGIN
  36.    BLOCK "StringFileInfo"
  37.     BEGIN
  38.     #ifdef UNICODE
  39.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  40.     #else
  41.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  42.     #endif
  43.       BEGIN
  44.        VALUE "CompanyName",     "Microsoft Corporation", ""
  45.        VALUE "FileDescription", "IAnimal Interface", ""
  46.        VALUE "FileVersion",     "1.00", ""
  47.        VALUE "InternalName",    "IANIMAL.DLL", ""
  48.        VALUE "LegalCopyright",  "Copyright 251 1993-1995 Microsoft Corp.", ""
  49.        VALUE "OriginalFilename","IANIMAL.DLL", ""
  50.        VALUE "ProductName",     "IAnimal Interface", ""
  51.        VALUE "ProductVersion",  "1.00"
  52.       END
  53.    END
  54.  
  55.    BLOCK "VarFileInfo"
  56.     BEGIN 
  57.     #ifdef UNICODE
  58.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  59.     #else
  60.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  61.     #endif
  62.     END 
  63.  END