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
878 B

  1. #include <windows.h>
  2. #define ADJ_MANREVISION 87
  3. #define DX_VER_FILETYPE VFT_DRV
  4. #define DX_VER_FILESUBTYPE VFT2_DRV_SYSTEM
  5. #define DX_VER_FILEDESCRIPTIONSTR "Microsoft DirectX API Driver"
  6. #ifdef DEBUG
  7. #define DX_VER_FILEDESCRIPTION_STR DX_VER_FILEDESCRIPTIONSTR " Debug"
  8. #else
  9. #define DX_VER_FILEDESCRIPTION_STR DX_VER_FILEDESCRIPTIONSTR
  10. #endif
  11. #define DX_VER_INTERNALNAME_STR "DXAPI.sys"
  12. #define DX_VER_ORIGINALFILENAME_STR DX_VER_INTERNALNAME_STR
  13. #ifdef WIN95
  14. #include "verinfo.h"
  15. #define VERSIONTYPE DX_VER_FILETYPE
  16. #define VERSIONSUBTYPE DX_VER_FILESUBTYPE
  17. #define VERSIONDESCRIPTION DX_VER_FILEDESCRIPTION_STR "\0"
  18. #define VERSIONNAME DX_VER_INTERNALNAME_STR "\0"
  19. #include "verinfo.ver"
  20. #endif