Leaked source code of windows server 2003
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.

31 lines
717 B

  1. #if 0
  2. Copyright (c) 1999 Microsoft Corporation
  3. #endif
  4. #include <winver.h>
  5. #ifdef WIN9X
  6. #include <verinfo.h>
  7. #define VERSIONNAME "dmtool.dll\0"
  8. #define VERSIONDESCRIPTION "Microsoft DirectMusic Tools\0"
  9. #define VERSIONTYPE VFT_DLL
  10. #define VERSIONSUBTYPE VFT2_UNKNOWN
  11. #include "verinfo.ver"
  12. #else // WINNT
  13. #include <ntverp.h>
  14. #define VER_FILETYPE VFT_DLL
  15. #define VER_FILESUBTYPE VFT2_UNKNOWN
  16. #define VER_FILEDESCRIPTION_STR "Microsoft DirectMusic Tools"
  17. #define VER_INTERNALNAME_STR VER_FILEDESCRIPTION_STR
  18. #define VER_ORIGINALFILENAME_STR "dmtool.dll"
  19. #include "common.ver"
  20. #endif