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.

32 lines
732 B

  1. #ifdef WIN95
  2. #include <version.h>
  3. #include "verinfo.h"
  4. #define VERSIONNAME "dplaysvr.exe\0"
  5. #ifdef DEBUG
  6. #define VERSIONDESCRIPTION "Microsoft DirectPlay Exe Debug\0"
  7. #else
  8. #define VERSIONDESCRIPTION "Microsoft DirectPlay Exe Helper\0"
  9. #endif
  10. #define VERSIONTYPE VFT_APP
  11. #define VERSIONSUBTYPE VFT2_UNKNOWN
  12. #include "verinfo.ver"
  13. #else //winnt:
  14. #include <windows.h>
  15. #include <ntverp.h>
  16. #define VER_FILETYPE VFT_UNKNOWN
  17. #define VER_FILESUBTYPE VFT2_UNKNOWN
  18. #define VER_FILEDESCRIPTION_STR "Microsoft DirectPlay Exe"
  19. #define VER_INTERNALNAME_STR "dplaysvr"
  20. #define VER_ORIGINALFILENAME_STR "dplaysvr"
  21. #include "common.ver"
  22. #endif