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.

104 lines
4.1 KiB

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