wish.rc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // RCS: @(#) $Id: wish.rc,v 1.8 2002/06/18 00:34:45 davygrvy Exp $
  2. //
  3. // Version Resource Script
  4. //
  5. #include <windows.h>
  6. #include <tk.h>
  7. //
  8. // build-up the name suffix that defines the type of build this is.
  9. //
  10. #ifdef TCL_THREADS
  11. #define SUFFIX_THREADS     "t"
  12. #else
  13. #define SUFFIX_THREADS     ""
  14. #endif
  15. #ifdef STATIC_BUILD
  16. #define SUFFIX_STATIC     "s"
  17. #else
  18. #define SUFFIX_STATIC     ""
  19. #endif
  20. #ifdef DEBUG
  21. #define SUFFIX_DEBUG     "d"
  22. #else
  23. #define SUFFIX_DEBUG     ""
  24. #endif
  25. #define SUFFIX     SUFFIX_THREADS SUFFIX_STATIC SUFFIX_DEBUG
  26. VS_VERSION_INFO VERSIONINFO
  27.  FILEVERSION    TK_MAJOR_VERSION,TK_MINOR_VERSION,TK_RELEASE_LEVEL,TK_RELEASE_SERIAL
  28.  PRODUCTVERSION TK_MAJOR_VERSION,TK_MINOR_VERSION,TK_RELEASE_LEVEL,TK_RELEASE_SERIAL
  29.  FILEFLAGSMASK 0x3fL
  30. #ifdef DEBUG
  31.  FILEFLAGS VS_FF_DEBUG
  32. #else
  33.  FILEFLAGS 0x0L
  34. #endif
  35.  FILEOS VOS__WINDOWS32
  36.  FILETYPE VFT_APP
  37.  FILESUBTYPE 0x0L
  38. BEGIN
  39.     BLOCK "StringFileInfo"
  40.     BEGIN
  41.         BLOCK "040904b0"
  42.         BEGIN
  43.             VALUE "FileDescription", "Wish Application"
  44.             VALUE "OriginalFilename", "wish" STRINGIFY(JOIN(TK_MAJOR_VERSION,TK_MINOR_VERSION)) SUFFIX ".exe"
  45.             VALUE "CompanyName", "ActiveState Corporation"
  46.             VALUE "FileVersion", TK_PATCH_LEVEL
  47.             VALUE "LegalCopyright", "Copyright 251 2000 by ActiveState Corporation, et al"
  48.             VALUE "ProductName", "Tk " TK_VERSION " for Windows"
  49.             VALUE "ProductVersion", TK_PATCH_LEVEL
  50.         END
  51.     END
  52.     BLOCK "VarFileInfo"
  53.     BEGIN
  54.         VALUE "Translation", 0x409, 1200
  55.     END
  56. END
  57. //
  58. // Icon
  59. // 
  60. //   The icon whose name or resource ID is lexigraphically first, is used
  61. //   as the application's icon.
  62. //
  63. app                      ICON    DISCARDABLE     "wish.ico"
  64. #ifdef STATIC_BUILD
  65. #include "tk_base.rc"
  66. #endif
  67. //
  68. // This enables themed scrollbars in XP by trying to use comctl32 v6.
  69. //
  70. #ifndef RT_MANIFEST
  71. #define RT_MANIFEST     24
  72. #endif
  73. #ifndef CREATEPROCESS_MANIFEST_RESOURCE_ID
  74. #define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
  75. #endif
  76. CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "wish.exe.manifest"