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.

59 lines
1.4 KiB

  1. #if 1 // nt
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_APP
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "Sound Recorder accessory"
  6. #define VER_INTERNALNAME_STR "soundrec.exe"
  7. #define VER_ORIGINALFILENAME_STR "sndrec32.exe"
  8. #include <common.ver>
  9. #else // not nt
  10. #include <ver.h>
  11. #include <verinfo.h>
  12. //
  13. // NOTE to people like george that go around and just change version
  14. // files at random.
  15. //
  16. // SOUNDREC.EXE has shipped with multiple products and has a previous
  17. // version history, we can use the "normal" project based version numbering.
  18. //
  19. // current versions of MPLAYER:
  20. //
  21. // Windows 3.1 3.10.103
  22. // MMPack 3.10.3.83
  23. // VfW 1.5 3.15.xxx
  24. //
  25. #if 0 // Changed version for Motown
  26. #undef MMVERSION
  27. #undef MMREVISION
  28. #undef VERSIONSTR
  29. #define MMVERSION 3
  30. #define MMREVISION 15
  31. #if defined(DEBUG_RETAIL)
  32. #define VERSIONSTR "VfW Retail Debug Version 3.15\0"
  33. #elif defined(DEBUG)
  34. #define VERSIONSTR "VfW Internal Debug Version 3.15\0"
  35. #else
  36. #define VERSIONSTR "3.15\0"
  37. #endif
  38. //
  39. // end of version hacks
  40. //
  41. #endif
  42. #define VERSIONNAME "soundrec.exe\0"
  43. #define VERSIONDESCRIPTION "Sound Recorder accessory\0"
  44. #define VERSIONTYPE VFT_APP
  45. #define VERSIONSUBTYPE VFT2_UNKNOWN
  46. #include <verinfo.ver>
  47. #endif // 1 - nt