1// Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2//
3// This program is free software; you can redistribute it and/or modify
4// it under the terms of the GNU General Public License as published by
5// the Free Software Foundation; version 2 of the License.
6//
7// This program is distributed in the hope that it will be useful,
8// but WITHOUT ANY WARRANTY; without even the implied warranty of
9// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10// GNU General Public License for more details.
11//
12// You should have received a copy of the GNU General Public License
13// along with this program; if not, write to the Free Software
14// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
15
16#include <windows.h>
17VS_VERSION_INFO VERSIONINFO
18FILEVERSION     @MAJOR_VERSION@,@MINOR_VERSION@,@PATCH_VERSION@,@TINY_VERSION@
19PRODUCTVERSION  @MAJOR_VERSION@,@MINOR_VERSION@,@PATCH_VERSION@,@TINY_VERSION@
20FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
21FILEFLAGS       0
22FILEOS          VOS__WINDOWS32
23FILETYPE        @FILETYPE@
24FILESUBTYPE     VFT2_UNKNOWN
25BEGIN
26    BLOCK "StringFileInfo"
27    BEGIN
28        BLOCK "040904E4"
29        BEGIN
30            VALUE "FileVersion",      "@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@.@TINY_VERSION@\0"
31            VALUE "ProductVersion",   "@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@.@TINY_VERSION@\0"
32        END
33    END
34    BLOCK "VarFileInfo"
35    BEGIN
36        VALUE "Translation", 0x409, 1252
37    END
38END
39