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.

28 lines
843 B

  1. #include <windows.h>
  2. #define DX_VER_FILETYPE VFT_APP
  3. #define DX_VER_FILESUBTYPE VFT2_UNKNOWN
  4. #define DX_VER_FILEDESCRIPTION_STR "DirectX 8.0 DirectPlay/DirectPlayVoice Logging Utility"
  5. #define DX_VER_INTERNALNAME_STR "dp8log.exe"
  6. #ifdef WIN95
  7. #include "verinfo.h"
  8. #define VERSIONTYPE DX_VER_FILETYPE
  9. #define VERSIONSUBTYPE DX_VER_FILESUBTYPE
  10. #define VERSIONDESCRIPTION DX_VER_FILEDESCRIPTION_STR "\0"
  11. #define VERSIONNAME DX_VER_INTERNALNAME_STR "\0"
  12. #include "verinfo.ver"
  13. #else
  14. #include <ntverp.h>
  15. #define VER_FILETYPE DX_VER_FILETYPE
  16. #define VER_FILESUBTYPE DX_VER_FILESUBTYPE
  17. #define VER_FILEDESCRIPTION_STR DX_VER_FILEDESCRIPTION_STR
  18. #define VER_INTERNALNAME_STR DX_VER_INTERNALNAME_STR
  19. #include "common.ver"
  20. #endif