File: tzxlist_res.rc

package info (click to toggle)
fuse-emulator-utils 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 2,576 kB
  • sloc: sh: 11,498; ansic: 11,083; cpp: 1,121; makefile: 166
file content (60 lines) | stat: -rw-r--r-- 1,979 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
51
52
53
54
55
56
57
58
59
60
/* tzxlist_res.rc: resources for Windows executable
   Copyright (c) 2015 Sergio Baldovi

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License along
   with this program; if not, write to the Free Software Foundation, Inc.,
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

   Author contact information:

   E-mail: serbalgi@gmail.com

*/

#include <config.h>

#include <windows.h>

/* VERSIONINFO specs:
http://msdn.microsoft.com/en-us/library/aa381058%28VS.85%29.aspx
*/
VS_VERSION_INFO VERSIONINFO
FILEVERSION      FUSE_UTILS_RC_VERSION
PRODUCTVERSION   FUSE_UTILS_RC_VERSION
FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
FILEFLAGS        0x0L
FILEOS           VOS__WINDOWS32
FILETYPE         VFT_APP
FILESUBTYPE      VFT2_UNKNOWN
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    BLOCK "040904B0"
    BEGIN
      VALUE "CompanyName",      "\0"
      VALUE "FileDescription",  "Sinclair ZX Spectrum tape file lister\0"
      VALUE "FileVersion",      VERSION##"\0"
      VALUE "InternalName",     "tzxlist\0"
      VALUE "LegalCopyright",   "Copyright (c) 2001-2011 Philip Kendall, Darren Salt, Fredrick Meunier\0"
      VALUE "License",          "tzxlist is licensed under the GNU General Public License, version 2 or later\0"
      VALUE "OriginalFilename", "tzxlist.exe\0"
      VALUE "ProductName",      PACKAGE##"\0"
      VALUE "ProductVersion",   VERSION##"\0"
    END
  END

  BLOCK "VarFileInfo"
  BEGIN
    VALUE "Translation", 0x409, 1252
  END
END