1/* profile2map_res.rc: resources for Windows executable
2   Copyright (c) 2015 Sergio Baldovi
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License along
15   with this program; if not, write to the Free Software Foundation, Inc.,
16   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18   Author contact information:
19
20   E-mail: serbalgi@gmail.com
21
22*/
23
24#include <config.h>
25
26#include <windows.h>
27
28/* VERSIONINFO specs:
29http://msdn.microsoft.com/en-us/library/aa381058%28VS.85%29.aspx
30*/
31VS_VERSION_INFO VERSIONINFO
32FILEVERSION      FUSE_UTILS_RC_VERSION
33PRODUCTVERSION   FUSE_UTILS_RC_VERSION
34FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
35FILEFLAGS        0x0L
36FILEOS           VOS__WINDOWS32
37FILETYPE         VFT_APP
38FILESUBTYPE      VFT2_UNKNOWN
39BEGIN
40  BLOCK "StringFileInfo"
41  BEGIN
42    BLOCK "040904B0"
43    BEGIN
44      VALUE "CompanyName",      "\0"
45      VALUE "FileDescription",  "Fuse profiler output converter\0"
46      VALUE "FileVersion",      VERSION##"\0"
47      VALUE "InternalName",     "profile2map\0"
48      VALUE "LegalCopyright",   "Copyright (c) 2007 Stuart Brady\0"
49      VALUE "License",          "profile2map is licensed under the GNU General Public License, version 2 or later\0"
50      VALUE "OriginalFilename", "profile2map.exe\0"
51      VALUE "ProductName",      PACKAGE##"\0"
52      VALUE "ProductVersion",   VERSION##"\0"
53    END
54  END
55
56  BLOCK "VarFileInfo"
57  BEGIN
58    VALUE "Translation", 0x409, 1252
59  END
60END
61