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.

67 lines
1.8 KiB

  1. //
  2. // current versions of MPLAYER:
  3. //
  4. // NOTE, make sure the numbers are increasing!!!!
  5. //
  6. // MMWIN 1.0 1.00.0.113
  7. // Windows 3.1 3.10.0.103
  8. // AVI Builds 3.11.0.### (### = build number)
  9. // AVI Final 3.11.0.
  10. //
  11. #include <ver.h>
  12. //#include <mmsysver.h>
  13. //#include <aviver.h>
  14. #include <vernum.h> // to get rmj, rmm, rup
  15. #define VERSIONNAME "mplayer.exe\0"
  16. #define VERSIONDESCRIPTION "Media Player OLE server\0"
  17. #define VERSIONTYPE VFT_APP
  18. #define VERSIONSUBTYPE VFT2_UNKNOWN
  19. #define VERSION 03
  20. #define REVISION 11
  21. #define RELEASE rup
  22. #ifdef DEBUG
  23. #define VERSIONSTR "3.11 (Debug)\0"
  24. #else
  25. #define VERSIONSTR "3.11\0"
  26. #endif
  27. #ifdef DEBUG
  28. #define VERSIONFLAGS VS_FF_DEBUG
  29. #else
  30. #define VERSIONFLAGS 0
  31. #endif
  32. VS_VERSION_INFO VERSIONINFO
  33. FILEVERSION VERSION,REVISION, 0, RELEASE
  34. PRODUCTVERSION VERSION,REVISION, 0, RELEASE
  35. FILEFLAGSMASK 0x0000003FL
  36. FILEFLAGS VERSIONFLAGS
  37. FILEOS VOS_DOS_WINDOWS16
  38. FILETYPE VERSIONTYPE
  39. FILESUBTYPE VERSIONSUBTYPE
  40. BEGIN
  41. BLOCK "StringFileInfo"
  42. BEGIN
  43. BLOCK "040904E4"
  44. BEGIN
  45. VALUE "CompanyName", "Microsoft Corporation\0"
  46. VALUE "FileDescription", VERSIONDESCRIPTION
  47. VALUE "FileVersion", VERSIONSTR
  48. VALUE "InternalName", VERSIONNAME
  49. VALUE "LegalCopyright", "Copyright \251 Microsoft Corp. 1990-1992\0"
  50. VALUE "OriginalFilename", VERSIONNAME
  51. VALUE "ProductName", "Microsoft Windows\0"
  52. VALUE "ProductVersion", VERSIONSTR
  53. END
  54. END
  55. BLOCK "VarFileInfo"
  56. BEGIN
  57. VALUE "Translation", 0x409, 1252
  58. END
  59. END