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.

28 lines
767 B

  1. #ifdef WINNT
  2. #include <winver.h>
  3. #include <ntverp.h>
  4. #define VER_FILETYPE VFT_DLL
  5. #define VER_FILESUBTYPE VFT2_UNKNOWN
  6. #define VER_FILEDESCRIPTION_STR "Microsoft DirectPlay Local Net Service Provider\0"
  7. #define VER_INTERNALNAME_STR "dpwsock\0"
  8. #define VER_ORIGINALFILENAME_STR "dpwsock.dll\0"
  9. #include <common.ver>
  10. #else
  11. #include <version.h>
  12. #include "verinfo.h"
  13. #define VERSIONNAME "dplay.dll\0"
  14. #ifdef DEBUG
  15. #define VERSIONDESCRIPTION "Microsoft DirectPlay Network Service Provider Debug\0"
  16. #else
  17. #define VERSIONDESCRIPTION "Microsoft DirectPlay Network Service Provider\0"
  18. #endif
  19. #define VERSIONTYPE VFT_DLL
  20. #define VERSIONSUBTYPE VFT2_UNKNOWN
  21. #include "verinfo.ver"
  22. #endif