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.

38 lines
820 B

  1. #ifdef WIN95
  2. #include <windows.h>
  3. //#include <version.h>
  4. #include "verinfo.h"
  5. #undef MANREVISION
  6. #undef VERSIONSTR
  7. #define MANREVISION 86
  8. #define VERSIONSTR "4.86.00." BUILD_NUMBER_STR "\0"
  9. #define VERSIONNAME "ddrawex.dll\0"
  10. #ifdef DEBUG
  11. #define VERSIONDESCRIPTION "Microsoft DirectDrawEx Debug\0"
  12. #else
  13. #define VERSIONDESCRIPTION "Microsoft DirectDrawEx\0"
  14. #endif
  15. #define VERSIONTYPE VFT_DLL
  16. #define VERSIONSUBTYPE VFT2_UNKNOWN
  17. #include "verinfo.ver"
  18. #else //winnt:
  19. #include <windows.h>
  20. #include <ntverp.h>
  21. #define VER_FILETYPE VFT_DLL
  22. #define VER_FILESUBTYPE VFT2_UNKNOWN
  23. #define VER_FILEDESCRIPTION_STR "Direct Draw Ex"
  24. #define VER_INTERNALNAME_STR "ddrawex"
  25. #include "common.ver"
  26. #endif