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.

34 lines
862 B

  1. // In any debug build, DBG must be defined as 1, to make ntverp.h
  2. // set up the version resource correctly with the VS_FF_DEBUG flag:
  3. #if (defined(DEBUG) || defined(RDEBUG)) && !defined(DBG)
  4. #define DBG 1
  5. #endif
  6. #include <winver.h>
  7. #ifndef WINNT
  8. #include <verinfo.h>
  9. #define VERSIONNAME "dmusic32.dll\0"
  10. #define VERSIONDESCRIPTION "Microsoft DirectMusic Legacy Port\0"
  11. #define VERSIONTYPE VFT_DLL
  12. #define VERSIONSUBTYPE VFT2_UNKNOWN
  13. #include "verinfo.ver"
  14. #else // WINNT
  15. #include <ntverp.h>
  16. #define VER_FILETYPE VFT_DLL
  17. #define VER_FILESUBTYPE VFT2_UNKNOWN
  18. #define VER_FILEDESCRIPTION_STR "Microsoft DirectMusic Legacy Port"
  19. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  20. #define VER_ORIGINALFILENAME_STR "dmusic32.dll"
  21. #include "common.ver"
  22. #endif