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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IKOALA.RC
  3.  * IKoala 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. //Default is nodebug
  20. #ifndef DEBUG
  21. #define VER_DEBUG                   0
  22. #else
  23. #define VER_DEBUG                   VS_FF_DEBUG
  24. #endif
  25. VS_VERSION_INFO VERSIONINFO 
  26.  FILEVERSION        1,0,0,0
  27.  PRODUCTVERSION     1,0,0,0
  28.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  29.  FILEFLAGS          VER_DEBUG
  30. #ifdef WIN32
  31.  FILEOS             VOS_NT_WINDOWS32
  32. #else
  33.  FILEOS             VOS_DOS_WINDOWS16
  34. #endif
  35.  FILETYPE           VFT_DLL
  36.  FILESUBTYPE        VFT_UNKNOWN
  37.  BEGIN
  38.    BLOCK "StringFileInfo"
  39.     BEGIN
  40.      BLOCK "040904E4"
  41.       BEGIN
  42.        VALUE "CompanyName",     "Microsoft Corporation", ""
  43.        VALUE "FileDescription", "IKoala Interface", ""
  44.        VALUE "FileVersion",     "1.00", ""
  45.        VALUE "InternalName",    "IKOALA.DLL", ""
  46.        VALUE "LegalCopyright",  "Copyright 251 1993-1995 Microsoft Corp.", ""
  47.        VALUE "OriginalFilename","IKOALA.DLL", ""
  48.        VALUE "ProductName",     "IKoala Interface", ""
  49.        VALUE "ProductVersion",  "1.00"
  50.       END
  51.    END
  52.  
  53.    BLOCK "VarFileInfo"
  54.     BEGIN 
  55.      VALUE "Translation", 0x0409, 0x04E4
  56.     END 
  57.  END