File: gpg-w32info.rc

package info (click to toggle)
gnupg2 2.0.26-6%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 41,744 kB
  • sloc: ansic: 148,708; sh: 7,943; makefile: 825; perl: 196; awk: 126; sed: 16
file content (50 lines) | stat: -rw-r--r-- 1,730 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* gpg-w32info.rc                                             -*- c -*-
 * Copyright (C) 2013 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 OpenPGP tool\0"
            VALUE "InternalName", "gpg\0"
            VALUE "OriginalFilename", "gpg.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