aboutsummaryrefslogtreecommitdiffstats
path: root/dirmngr/dirmngr_ldap-w32info.rc
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2023-05-24 10:06:37 +0000
committerWerner Koch <[email protected]>2023-05-24 10:14:06 +0000
commit3a438a1cc3505390e5e1a33ebbf1bd87d7a22840 (patch)
tree69fb1f9607721865c70f0442059c40427a78aa6a /dirmngr/dirmngr_ldap-w32info.rc
parentcommon,w32: Set a proper error code when creating an output file. (diff)
downloadgnupg-3a438a1cc3505390e5e1a33ebbf1bd87d7a22840.tar.gz
gnupg-3a438a1cc3505390e5e1a33ebbf1bd87d7a22840.zip
w32: Add missing manifests and set a requestedExecutionLevel.
* agent/gpg-agent.w32-manifest.in: New. * dirmngr/dirmngr-client-w32info.rc: New. * dirmngr/dirmngr-client.w32-manifest.in: New. * dirmngr/dirmngr-w32info.rc: New. * dirmngr/dirmngr.w32-manifest.in: New. * dirmngr/dirmngr_ldap-w32info.rc: New. * dirmngr/dirmngr_ldap.w32-manifest.in: New. * g10/gpgv-w32info.rc: New. * g10/gpgv.w32-manifest.in: New. * kbx/keyboxd.w32-manifest.in: New. * scd/scdaemon.w32-manifest.in: New. * sm/gpgsm.w32-manifest.in: New. -- This avoids the use of the VirtualStore uner Windows. GnuPG-bug-id: 6503
Diffstat (limited to 'dirmngr/dirmngr_ldap-w32info.rc')
-rw-r--r--dirmngr/dirmngr_ldap-w32info.rc52
1 files changed, 52 insertions, 0 deletions
diff --git a/dirmngr/dirmngr_ldap-w32info.rc b/dirmngr/dirmngr_ldap-w32info.rc
new file mode 100644
index 000000000..779d85837
--- /dev/null
+++ b/dirmngr/dirmngr_ldap-w32info.rc
@@ -0,0 +1,52 @@
+/* dirmngr_ldap-w32info.rc -*- c -*-
+ * Copyright (C) 2023 g10 Code GmbH
+ *
+ * This file is free software; as a special exception the author gives
+ * unlimited permission to copy and/or distribute it, with or without
+ * modifications, as long as this notice is preserved.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
+#include "afxres.h"
+#include "../common/w32info-rc.h"
+
+1 ICON "../common/gnupg.ico"
+
+1 VERSIONINFO
+ FILEVERSION W32INFO_VI_FILEVERSION
+ PRODUCTVERSION W32INFO_VI_PRODUCTVERSION
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x01L /* VS_FF_DEBUG (0x1)*/
+#else
+ FILEFLAGS 0x00L
+#endif
+ FILEOS 0x40004L /* VOS_NT (0x40000) | VOS__WINDOWS32 (0x4) */
+ FILETYPE 0x1L /* VFT_APP (0x1) */
+ FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
+ BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0" /* US English (0409), Unicode (04b0) */
+ BEGIN
+ VALUE "FileDescription", L"GnuPG\x2019s LDAP helper\0"
+ VALUE "InternalName", "dirmngr_ldap\0"
+ VALUE "OriginalFilename", "dirmngr_ldap.exe\0"
+ VALUE "ProductName", W32INFO_PRODUCTNAME
+ VALUE "ProductVersion", W32INFO_PRODUCTVERSION
+ VALUE "CompanyName", W32INFO_COMPANYNAME
+ VALUE "FileVersion", W32INFO_FILEVERSION
+ VALUE "LegalCopyright", W32INFO_LEGALCOPYRIGHT
+ VALUE "Comments", W32INFO_COMMENTS
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 0x4b0
+ END
+ END
+
+1 RT_MANIFEST "dirmngr_ldap.w32-manifest"