Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
4.6 KiB

  1. /******************************************************************************
  2. *
  3. * File Name: msime95.rcv
  4. *
  5. * - Resource script file for IME of Hangeul Windows 95.
  6. *
  7. * Author: Beomseok Oh (BeomOh)
  8. *
  9. * Copyright (C) Microsoft Corp 1993-1996. All rights reserved.
  10. *
  11. ******************************************************************************/
  12. #include <winver.h>
  13. #define VER_PRODUCTNAME_STR "MS IME for Windows NT\0"
  14. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  15. #define VER_LEGALTRADEMARKS_STR "Microsoft(TM) is a registered trademark of Microsoft Corporation\0"
  16. #define VER_LEGALCOPYRIGHT_STR "Copyright(C) Microsoft Corp. 1992-1996\0"
  17. #define VER_PRODUCTVERSION_STR "4.00\0"
  18. #define VER_PRODUCTVERSION 4,00,0,00
  19. #define VER_COMMENT_STR "MS IME\0"
  20. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  21. #define VER_FILEFLAGS 0L
  22. #define VER_FILEOS VOS_NT_WINDOWS32
  23. #define VER_FILEVERSION_STR "4.00\0"
  24. #define VER_FILETYPE VFT_DRV
  25. #define VER_FILESUBTYPE VFT2_DRV_INPUTMETHOD
  26. #define VER_FILEDESCRIPTION_STR "Microsoft Hangeul Input Method Editor\0"
  27. #define VER_INTERNALNAME_STR "MSIME95K\0"
  28. #define VER_LEGALCOPYRIGHT_YEARS "1992-1996\0"
  29. #define VER_ORIGINALFILENAME_STR "MSIME95K.IME\0"
  30. //#include <common.ver>
  31. /*---------------------------------------------------------------*/
  32. /* */
  33. /* The following section actually creates the version structure. */
  34. /* They are ignored if we are not being invoked by RC. */
  35. /* */
  36. /* VERSION.H must be included before including this file */
  37. /* */
  38. /* If VER_LEGALCOPYRIGHT_STR is not defined, it will be */
  39. /* constructed using VER_LEGALCOPYRIGHT_YEARS, so at least one */
  40. /* these macros must be defined before including this file. */
  41. /* */
  42. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR, and */
  43. /* VER_INTERNALNAME_STR must be defined before including this */
  44. /* file. */
  45. /* */
  46. /* If VER_FILEVERSION is not defined, VER_PRODUCTVERSION will be */
  47. /* used instead. If VER_FILEVERSION_STR is not defined, */
  48. /* VER_PRODUCTVERSION_STR will be used instead. */
  49. /* */
  50. /* If VER_ORIGINALFILENAME_STR is not defined, it is set to */
  51. /* the NULL string. */
  52. /* */
  53. /* If INTL is defined, then this is assumed to be an */
  54. /* an international build; two string blocks will be created, */
  55. /* (since all version resources must have English), and the */
  56. /* second one can be localized */
  57. /* */
  58. /*---------------------------------------------------------------*/
  59. #ifdef RC_INVOKED
  60. #ifndef VER_LEGALCOPYRIGHT_STR
  61. #define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. ", VER_LEGALCOPYRIGHT_YEARS, "\0"
  62. #endif
  63. #ifndef VER_FILEVERSION
  64. #define VER_FILEVERSION VER_PRODUCTVERSION
  65. #endif
  66. #ifndef VER_FILEVERSION_STR
  67. #define VER_FILEVERSION_STR VER_PRODUCTVERSION_STR
  68. #endif
  69. #ifndef VER_ORIGINALFILENAME_STR
  70. #define VER_ORIGINALFILENAME_STR "\0"
  71. #endif
  72. VS_VERSION_INFO VERSIONINFO
  73. FILEVERSION VER_FILEVERSION
  74. PRODUCTVERSION VER_PRODUCTVERSION
  75. FILEFLAGSMASK VER_FILEFLAGSMASK
  76. FILEFLAGS VER_FILEFLAGS
  77. FILEOS VER_FILEOS
  78. FILETYPE VER_FILETYPE
  79. FILESUBTYPE VER_FILESUBTYPE
  80. BEGIN
  81. BLOCK "StringFileInfo"
  82. BEGIN
  83. BLOCK "041203B5"
  84. BEGIN
  85. VALUE "CompanyName", VER_COMPANYNAME_STR, "\0"
  86. VALUE "FileDescription", VER_FILEDESCRIPTION_STR, "\0"
  87. VALUE "FileVersion", VER_FILEVERSION_STR, "\0"
  88. VALUE "InternalName", VER_INTERNALNAME_STR, "\0"
  89. VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR, "\0"
  90. VALUE "OriginalFilename",VER_ORIGINALFILENAME_STR, "\0"
  91. VALUE "ProductName", VER_PRODUCTNAME_STR, "\0"
  92. VALUE "ProductVersion", VER_PRODUCTVERSION_STR, "\0"
  93. END
  94. END
  95. BLOCK "VarFileInfo"
  96. BEGIN
  97. /* the following line should be extended for localized versions */
  98. VALUE "Translation", 0x0412, 0x03B5
  99. END
  100. END
  101. #endif