summaryrefslogtreecommitdiff
path: root/libs/libssh2/src/libssh2.rc
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-06-09 21:40:16 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-06-09 21:40:16 +0300
commit927f00cc19b7239a1fe12abe30b472d61b753d8d (patch)
tree68a190dd83dc2dcceb82464a1953f2701af2a109 /libs/libssh2/src/libssh2.rc
parent1b241cad53b8c3c5300409fe681de18e636dcf3d (diff)
fixes #3551 (Update libssh2 to 1.11.0)
Diffstat (limited to 'libs/libssh2/src/libssh2.rc')
-rw-r--r--libs/libssh2/src/libssh2.rc48
1 files changed, 48 insertions, 0 deletions
diff --git a/libs/libssh2/src/libssh2.rc b/libs/libssh2/src/libssh2.rc
new file mode 100644
index 0000000000..4862d78eef
--- /dev/null
+++ b/libs/libssh2/src/libssh2.rc
@@ -0,0 +1,48 @@
+/***************************************************************************
+* libssh2 Windows resource file
+* Copyright (C) The libssh2 project and its contributors.
+*
+* SPDX-License-Identifier: BSD-3-Clause
+***************************************************************************/
+#include <winver.h>
+#include "libssh2.h"
+
+LANGUAGE 0, 0
+
+#define RC_VERSION LIBSSH2_VERSION_MAJOR, LIBSSH2_VERSION_MINOR, LIBSSH2_VERSION_PATCH, 0
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION RC_VERSION
+ PRODUCTVERSION RC_VERSION
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
+#if defined(LIBSSH2DEBUG) || defined(_DEBUG)
+ FILEFLAGS VS_FF_DEBUG
+#else
+ FILEFLAGS 0
+#endif
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_DLL
+ FILESUBTYPE 0
+
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0" /* 0x0409: en-US, 1200/0x04b0: UTF-16LE */
+ BEGIN
+ VALUE "CompanyName", "The libssh2 library, https://www.libssh2.org/\0"
+ VALUE "FileDescription", "libssh2 Shared Library\0"
+ VALUE "FileVersion", LIBSSH2_VERSION "\0"
+ VALUE "InternalName", "libssh2\0"
+ VALUE "OriginalFilename", "libssh2.dll\0"
+ VALUE "ProductName", "The libssh2 library\0"
+ VALUE "ProductVersion", LIBSSH2_VERSION "\0"
+ VALUE "LegalCopyright", "Copyright (C) " LIBSSH2_COPYRIGHT "\0"
+ VALUE "License", "https://www.libssh2.org/license.html\0"
+ END
+ END
+
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0409, 0x04b0 /* 0x0409: en-US, 1200/0x04b0: UTF-16LE */
+ END
+END