1*184e05d2SAndrew Rist// *************************************************************
2*184e05d2SAndrew Rist//
3*184e05d2SAndrew Rist//  Licensed to the Apache Software Foundation (ASF) under one
4*184e05d2SAndrew Rist//  or more contributor license agreements.  See the NOTICE file
5*184e05d2SAndrew Rist//  distributed with this work for additional information
6*184e05d2SAndrew Rist//  regarding copyright ownership.  The ASF licenses this file
7*184e05d2SAndrew Rist//  to you under the Apache License, Version 2.0 (the
8*184e05d2SAndrew Rist//  "License"); you may not use this file except in compliance
9*184e05d2SAndrew Rist//  with the License.  You may obtain a copy of the License at
10*184e05d2SAndrew Rist//
11*184e05d2SAndrew Rist//    http://www.apache.org/licenses/LICENSE-2.0
12*184e05d2SAndrew Rist//
13*184e05d2SAndrew Rist//  Unless required by applicable law or agreed to in writing,
14*184e05d2SAndrew Rist//  software distributed under the License is distributed on an
15*184e05d2SAndrew Rist//  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*184e05d2SAndrew Rist//  KIND, either express or implied.  See the License for the
17*184e05d2SAndrew Rist//  specific language governing permissions and limitations
18*184e05d2SAndrew Rist//  under the License.
19*184e05d2SAndrew Rist//
20*184e05d2SAndrew Rist// *************************************************************
21*184e05d2SAndrew Rist
22cdf0e10cSrcweir#if defined(_MSC_VER) && (_MSC_VER < 1500)
23cdf0e10cSrcweir#include <winres.h>
24cdf0e10cSrcweir#else
25cdf0e10cSrcweir#define WINVER 0x0500
26cdf0e10cSrcweir#include <winresrc.h>
27cdf0e10cSrcweir#define LB_ADDSTRING	(WM_USER+1)
28cdf0e10cSrcweir#define CB_ADDSTRING	(WM_USER+3)
29cdf0e10cSrcweir#define IDC_STATIC		(-1)
30cdf0e10cSrcweir#endif
31cdf0e10cSrcweir#include "resource.h"
32cdf0e10cSrcweir
33cdf0e10cSrcweir/////////////////////////////////////////////////////////////////////////////
34cdf0e10cSrcweir//
35cdf0e10cSrcweir// Version
36cdf0e10cSrcweir//
37cdf0e10cSrcweir
38cdf0e10cSrcweirVS_VERSION_INFO VERSIONINFO
39cdf0e10cSrcweir FILEVERSION 1,1,1,0
40cdf0e10cSrcweir PRODUCTVERSION 1,1,1,0
41cdf0e10cSrcweir FILEFLAGSMASK 0x3fL
42cdf0e10cSrcweir#ifdef _DEBUG
43cdf0e10cSrcweir FILEFLAGS 0x9L
44cdf0e10cSrcweir#else
45cdf0e10cSrcweir FILEFLAGS 0x8L
46cdf0e10cSrcweir#endif
47cdf0e10cSrcweir FILEOS 0x40004L
48cdf0e10cSrcweir FILETYPE 0x1L
49cdf0e10cSrcweir FILESUBTYPE 0x0L
50cdf0e10cSrcweirBEGIN
51cdf0e10cSrcweir    BLOCK "VarFileInfo"
52cdf0e10cSrcweir    BEGIN
53cdf0e10cSrcweir        VALUE "Translation", 0x409, 1200
54cdf0e10cSrcweir    END
55cdf0e10cSrcweirEND
56cdf0e10cSrcweir
57cdf0e10cSrcweir
58cdf0e10cSrcweir/////////////////////////////////////////////////////////////////////////////
59cdf0e10cSrcweir//
60cdf0e10cSrcweir// Icon
61cdf0e10cSrcweir//
62cdf0e10cSrcweir
63cdf0e10cSrcweirIDI_INSTALLER           ICON                    "setup.ico"
64cdf0e10cSrcweir
65