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.

68 lines
1.7 KiB

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORPORATION, 1998
  4. *
  5. * TITLE: ServUI.RCV
  6. *
  7. * VERSION: 1.0
  8. *
  9. * AUTHOR: orenr
  10. *
  11. * DATE: 08/22/2000
  12. *
  13. * DESCRIPTION: Standard NT version resource
  14. *
  15. *******************************************************************************/
  16. #ifndef DONT_USE_NT_VERSION
  17. #include <winver.h>
  18. #include <ntverp.h>
  19. #endif
  20. #define VER_FILETYPE VFT_APP
  21. #define VER_FILESUBTYPE VFT_UNKNOWN
  22. #define VER_FILEDESCRIPTION_STR "UPnP Slideshow Projector UI"
  23. #define VER_INTERNALNAME_STR "WIAPRJCTR"
  24. // #define VER_LEGALCOPYRIGHT_YEARS "2000"
  25. #define VER_ORIGINALFILENAME_STR "WIAPRJCTR.EXE"
  26. #ifndef DONT_USE_NT_VERSION
  27. #include <common.ver>
  28. #endif
  29. #ifdef DONT_USE_NT_VERSION
  30. VS_VERSION_INFO VERSIONINFO
  31. FILEVERSION 1,0,0,1
  32. PRODUCTVERSION 1,0,0,1
  33. FILEFLAGSMASK 0x3fL
  34. #ifdef _DEBUG
  35. FILEFLAGS 0x1L
  36. #else
  37. FILEFLAGS 0x0L
  38. #endif
  39. FILEOS 0x10004L
  40. FILETYPE VER_FILETYPE
  41. FILESUBTYPE 0x0L
  42. BEGIN
  43. BLOCK "StringFileInfo"
  44. BEGIN
  45. BLOCK "040904b0"
  46. BEGIN
  47. VALUE "CompanyName", "Microsoft\0"
  48. VALUE "FileDescription", VER_FILEDESCRIPTION_STR "\0"
  49. VALUE "FileVersion", "1, 0, 0, 1\0"
  50. VALUE "InternalName", VER_INTERNALNAME_STR "\0"
  51. VALUE "LegalCopyright", "Copyright � 2000, Microsoft Corp.\0"
  52. VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR "\0"
  53. VALUE "ProductName", VER_FILEDESCRIPTION_STR "\0"
  54. VALUE "ProductVersion", "1, 0, 0, 1\0"
  55. END
  56. END
  57. BLOCK "VarFileInfo"
  58. BEGIN
  59. VALUE "Translation", 0x409, 1200
  60. END
  61. END
  62. #endif