2
0

DLLVersion.rc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifdef APSTUDIO_INVOKED
  2. #error This file is not editable by Visual C++.
  3. #endif //APSTUDIO_INVOKED
  4. #include "winres.h"
  5. #define POCO_VERSION 1,8,1,0
  6. #define POCO_VERSION_STR "1.8.1"
  7. VS_VERSION_INFO VERSIONINFO
  8. FILEVERSION POCO_VERSION
  9. PRODUCTVERSION POCO_VERSION
  10. FILEFLAGSMASK 0x17L
  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 "000004b0"
  23. BEGIN
  24. VALUE "CompanyName", "Applied Informatics Software Engineering GmbH"
  25. VALUE "FileDescription", "This file is part of the POCO C++ Libraries."
  26. VALUE "FileVersion", POCO_VERSION_STR
  27. VALUE "InternalName", "POCO"
  28. VALUE "LegalCopyright", "Copyright (C) 2004-2018, Applied Informatics Software Engineering GmbH and Contributors."
  29. VALUE "ProductName", "POCO C++ Libraries - http://pocoproject.org"
  30. VALUE "ProductVersion", POCO_VERSION_STR
  31. END
  32. END
  33. BLOCK "VarFileInfo"
  34. BEGIN
  35. VALUE "Translation", 0x0, 1200
  36. END
  37. END