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.

33 lines
799 B

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