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.

39 lines
925 B

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