1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22// Header
23#include "resource.h"
24#if defined(_MSC_VER) && (_MSC_VER < 1500)
25#include "winres.h"
26#else
27#define WINVER 0x0500
28#include <winresrc.h>
29#define LB_ADDSTRING	(WM_USER+1)
30#define CB_ADDSTRING	(WM_USER+3)
31#define IDC_STATIC		(-1)
32#endif
33
34#define VER_FIRSTYEAR	2003
35
36#include "version.hrc"
37
38#ifdef FONTSIZE
39#undef FONTSIZE
40#endif
41#define LANG_KOREAN 82
42#define LANG_CHINESE 86
43#define LANG_JAPANESE 81
44#define PLACEHOLDER LANGUAGE
45
46// -----------------------------------------------------------------------
47// 				version information
48// -----------------------------------------------------------------------
49
50VS_VERSION_INFO versioninfo
51	fileversion    VERSION, SUBVERSION, VERVARIANT, VER_COUNT
52	productversion VERSION, SUBVERSION, VERVARIANT, VER_COUNT
53	fileflagsmask 0x3F
54	fileflags
55#if defined(DEBUG)
56	VS_FF_DEBUG |
57#endif
58#ifdef VER_PREL
59	VS_FF_PRERELEASE |
60#endif
61	0
62#ifndef WIN32
63	fileos VOS_DOS_WINDOWS16
64#else
65	fileos VOS_NT_WINDOWS32
66#endif
67	filetype VFT_APP
68	{
69		block "StringFileInfo"
70		{
71#ifdef LG_D
72			block "040704E4"
73			{
74				// German StringTable
75				value "CompanyName",		"OpenOffice.org\0"
76				value "FileDescription", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\0"
77				value "FileVersion",		PPS(VER_LEVEL) "\0"
78				value "ProductVersion",		PPS(VER_LEVEL) "\0"
79				value "OriginalFilename",	"SOREPORT.EXE\0"
80				value "InternalName",		"CrashReport\0"
81				value "LegalCopyright",		S_CRIGHT " Sun Microsystems, Inc.\0"
82			}
83#else
84			block "040904E4"
85			{
86				// International StringTable
87				value "CompanyName", 		"OpenOffice.org\0"
88				value "FileDescription",	"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\0"
89				value "FileVersion",		PPS(VER_LEVEL) "\0"
90				value "ProductVersion",		PPS(VER_LEVEL) "\0"
91				value "OriginalFilename",	"SOREPORT.EXE\0"
92				value "InternalName", 		"CrashReport\0"
93				value "LegalCopyright", 	S_CRIGHT " Sun Microsystems, Inc.\0"
94			}
95#endif
96		}
97
98		block "VarFileInfo"
99		{
100#ifdef LG_D
101			value "Translation", 0x0407, 1252
102#else
103			value "Translation", 0x0409, 1252
104#endif
105		}
106	}
107
108
109