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.

52 lines
1.5 KiB

  1. #ifndef _MAC
  2. #if defined(PRIVATEVERSION) || defined(APSTUDIO_INVOKED)
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // Version
  6. //
  7. VS_VERSION_INFO VERSIONINFO
  8. FILEVERSION 1,0,0,159
  9. PRODUCTVERSION 1,0,0,159
  10. FILEFLAGSMASK 0x3fL
  11. #ifdef _DEBUG
  12. FILEFLAGS 0x1L
  13. #else
  14. FILEFLAGS 0x0L
  15. #endif
  16. FILEOS 0x4L
  17. FILETYPE 0x2L
  18. FILESUBTYPE 0x0L
  19. BEGIN
  20. BLOCK "StringFileInfo"
  21. BEGIN
  22. BLOCK "040904b0"
  23. BEGIN
  24. VALUE "CompanyName", "Microsoft Corporation\0"
  25. VALUE "FileDescription", "Wireless Network Policy Management Snap-in for Microsoft Windows\0"
  26. VALUE "FileVersion", "1, 0, 0\0"
  27. VALUE "InternalName", "WLSNP\0"
  28. VALUE "LegalCopyright", "Copyright (C) Microsoft Corp. 1981 - 2001\0"
  29. VALUE "OriginalFilename", "WLSNP.DLL\0"
  30. VALUE "ProductName", "Wireless Network Policy Management Snapin for Microsoft Windows\0"
  31. VALUE "ProductVersion", "1, 0, 0\0"
  32. END
  33. END
  34. BLOCK "VarFileInfo"
  35. BEGIN
  36. VALUE "Translation", 0x409, 1200
  37. END
  38. END
  39. #else
  40. #include <winver.h>
  41. #include <ntverp.h>
  42. #define VER_FILETYPE VFT_DLL
  43. #define VER_FILESUBTYPE VFT2_UNKNOWN
  44. #define VER_FILEDESCRIPTION_STR "Wireless Network Policy Management Snap-in for Microsoft Windows 2000\0"
  45. #define VER_INTERNALNAME_STR "WLSNP\0"
  46. #define VER_ORIGINALFILENAME_STR "WLSNP.DLL\0"
  47. #include "common.ver"
  48. #endif // defined(DBG) || defined(APSTUDIO_INVOKED)
  49. #endif // !_MAC