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.

30 lines
1.0 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. /* First munge the ntverp.h version numbers, since we are not Whistler */
  4. #undef VER_PRODUCTMAJORVERSION
  5. #define VER_PRODUCTMAJORVERSION 1
  6. #undef VER_PRODUCTMINORVERSION
  7. #define VER_PRODUCTMINORVERSION 0
  8. #undef VER_PRODUCTBUILD_QFE
  9. #define VER_PRODUCTBUILD_QFE 0
  10. /* Fix up some ntverp.h-generated product strings (since this DLL is not for NT/Win2000/Whistler!) */
  11. #undef VER_PRODUCTNAME_STR
  12. #define VER_PRODUCTNAME_STR "Microsoft (R) Windows (R) 95, Windows (R) 98, and Windows (R) Millenium Operating Systems"
  13. /* Now, make sure that the language neutrality of this dll is known */
  14. #define VER_LANGNEUTRAL
  15. /* Fix up the copyright years */
  16. #define VER_LEGALCOPYRIGHT_YEARS "2000-2001"
  17. /* Ok, made it. Now we can do our thing */
  18. #define VER_FILETYPE VFT_APP
  19. #define VER_FILESUBTYPE VFT2_UNKNOWN
  20. #define VER_FILEDESCRIPTION_STR "Unicode Layer for Win9x"
  21. #define VER_INTERNALNAME_STR "(No Longer) Waiting for Godot!\0"
  22. #define VER_ORIGINALFILENAME_STR "UnicoWS.dll"
  23. #include "common.ver"