1/* gpg-agent-w32info.rc                                        -*- c -*-
2 * Copyright (C) 2013 g10 Code GmbH
3 *
4 * This file is free software; as a special exception the author gives
5 * unlimited permission to copy and/or distribute it, with or without
6 * modifications, as long as this notice is preserved.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
10 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 */
12
13#include "afxres.h"
14#include "../common/w32info-rc.h"
15
161 ICON "../common/gnupg.ico"
17
181 VERSIONINFO
19  FILEVERSION    W32INFO_VI_FILEVERSION
20  PRODUCTVERSION W32INFO_VI_PRODUCTVERSION
21  FILEFLAGSMASK  0x3fL
22#ifdef _DEBUG
23  FILEFLAGS      0x01L    /* VS_FF_DEBUG (0x1)*/
24#else
25  FILEFLAGS      0x00L
26#endif
27  FILEOS         0x40004L /* VOS_NT (0x40000) | VOS__WINDOWS32 (0x4)  */
28  FILETYPE       0x1L     /* VFT_APP (0x1)  */
29  FILESUBTYPE    0x0L     /* VFT2_UNKNOWN   */
30  BEGIN
31    BLOCK "StringFileInfo"
32    BEGIN
33        BLOCK "040904b0"  /* US English (0409), Unicode (04b0) */
34        BEGIN
35            VALUE "FileDescription", L"GnuPG\x2019s private key daemon\0"
36            VALUE "InternalName", "gpg-agent\0"
37            VALUE "OriginalFilename", "gpg-agent.exe\0"
38            VALUE "ProductName",    W32INFO_PRODUCTNAME
39            VALUE "ProductVersion", W32INFO_PRODUCTVERSION
40            VALUE "CompanyName", W32INFO_COMPANYNAME
41            VALUE "FileVersion", W32INFO_FILEVERSION
42            VALUE "LegalCopyright", W32INFO_LEGALCOPYRIGHT
43            VALUE "Comments",    W32INFO_COMMENTS
44        END
45    END
46    BLOCK "VarFileInfo"
47    BEGIN
48      VALUE "Translation", 0x409, 0x4b0
49    END
50  END
51