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.

47 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) 1998-1998 Microsoft Corporation
  6. //
  7. // File: dmcompos.rc
  8. //
  9. //--------------------------------------------------------------------------
  10. // In any debug build, DBG must be defined as 1, to make ntverp.h
  11. // set up the version resource correctly with the VS_FF_DEBUG flag:
  12. #if (defined(DEBUG) || defined(RDEBUG)) && !defined(DBG)
  13. #define DBG 1
  14. #endif
  15. #include <winver.h>
  16. #ifdef WIN9X
  17. #include <verinfo.h>
  18. #define VERSIONNAME "dmcompos.dll\0"
  19. #define VERSIONDESCRIPTION "Microsoft DirectMusic Composer\0"
  20. #define VERSIONTYPE VFT_DLL
  21. #define VERSIONSUBTYPE VFT2_UNKNOWN
  22. #include "verinfo.ver"
  23. #else // WINNT
  24. #include <ntverp.h>
  25. #define VER_FILETYPE VFT_DLL
  26. #define VER_FILESUBTYPE VFT2_UNKNOWN
  27. #define VER_FILEDESCRIPTION_STR "Microsoft DirectMusic Composer"
  28. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  29. #define VER_ORIGINALFILENAME_STR "dmcompos.dll"
  30. #include "common.ver"
  31. #endif