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.

53 lines
1.7 KiB

  1. // Copyright (c) 1996-1999 Microsoft Corporation
  2. // In any debug build, DBG must be defined as 1, to make ntverp.h
  3. // set up the version resource correctly with the VS_FF_DEBUG flag:
  4. #if (defined(DEBUG) || defined(RDEBUG)) && !defined(DBG)
  5. #define DBG 1
  6. #endif
  7. #ifdef WIN9X
  8. #include <windows.h>
  9. #include <verinfo.h>
  10. // @@BEGIN_DDKSPLIT -- This section will be removed in the DDK sample. See ddkreadme.txt for more info.
  11. #define VERSIONNAME "dmsynth.dll\0"
  12. #define VERSIONDESCRIPTION "Microsoft DirectMusic Software Synthesizer\0"
  13. #if 0 // The following section will only take affect in the DDK sample.
  14. // @@END_DDKSPLIT
  15. #define VERSIONNAME "ddksynth.dll\0"
  16. #define VERSIONDESCRIPTION "Microsoft DDK Software Synthesizer\0"
  17. // @@BEGIN_DDKSPLIT -- This section will be removed in the DDK sample.
  18. #endif
  19. // @@END_DDKSPLIT
  20. #define VERSIONTYPE VFT_DLL
  21. #define VERSIONSUBTYPE VFT2_UNKNOWN
  22. #include "verinfo.ver"
  23. #else // WINNT
  24. #include <windows.h>
  25. #include <ntverp.h>
  26. #define VER_FILETYPE VFT_DLL
  27. #define VER_FILESUBTYPE VFT2_UNKNOWN
  28. // @@BEGIN_DDKSPLIT -- This section will be removed in the DDK sample. See ddkreadme.txt for more info.
  29. #define VER_FILEDESCRIPTION_STR "Microsoft DirectMusic Software Synthesizer"
  30. #define VER_ORIGINALFILENAME_STR "dmsynth.dll"
  31. #if 0 // The following section will only take affect in the DDK sample.
  32. // @@END_DDKSPLIT
  33. #define VER_FILEDESCRIPTION_STR "Microsoft DDK Software Synthesizer"
  34. #define VER_ORIGINALFILENAME_STR "ddksynth.dll"
  35. // @@BEGIN_DDKSPLIT -- This section will be removed in the DDK sample.
  36. #endif
  37. // @@END_DDKSPLIT
  38. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  39. #include "common.ver"
  40. #endif