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 IDC_STATIC (-1) 28cdf0e10cSrcweir#endif 29cdf0e10cSrcweir#include "resource.h" 30cdf0e10cSrcweir 31cdf0e10cSrcweir///////////////////////////////////////////////////////////////////////////// 32cdf0e10cSrcweir// 33cdf0e10cSrcweir// Version 34cdf0e10cSrcweir// 35cdf0e10cSrcweir 36cdf0e10cSrcweirVS_VERSION_INFO VERSIONINFO 37cdf0e10cSrcweir FILEVERSION 1,1,1,0 38cdf0e10cSrcweir PRODUCTVERSION 1,1,1,0 39cdf0e10cSrcweir FILEFLAGSMASK 0x3fL 40cdf0e10cSrcweir#ifdef _DEBUG 41cdf0e10cSrcweir FILEFLAGS 0x9L 42cdf0e10cSrcweir#else 43cdf0e10cSrcweir FILEFLAGS 0x8L 44cdf0e10cSrcweir#endif 45cdf0e10cSrcweir FILEOS 0x40004L 46cdf0e10cSrcweir FILETYPE 0x1L 47cdf0e10cSrcweir FILESUBTYPE 0x0L 48cdf0e10cSrcweirBEGIN 49cdf0e10cSrcweir BLOCK "VarFileInfo" 50cdf0e10cSrcweir BEGIN 51cdf0e10cSrcweir VALUE "Translation", 0x409, 1200 52cdf0e10cSrcweir END 53cdf0e10cSrcweirEND 54cdf0e10cSrcweir 55cdf0e10cSrcweir 56cdf0e10cSrcweir///////////////////////////////////////////////////////////////////////////// 57cdf0e10cSrcweir// 58cdf0e10cSrcweir// Icon 59cdf0e10cSrcweir// 60cdf0e10cSrcweir 61