1/************************************************************************* 2# 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26#*************************************************************************/ 27 28// Header 29#include "resource.h" 30#if defined(_MSC_VER) && (_MSC_VER < 1500) 31#include "winres.h" 32#else 33#define WINVER 0x0500 34#include <winresrc.h> 35#define LB_ADDSTRING (WM_USER+1) 36#define CB_ADDSTRING (WM_USER+3) 37#define IDC_STATIC (-1) 38#endif 39 40#define VER_FIRSTYEAR 2003 41 42#include "version.hrc" 43 44#ifdef FONTSIZE 45#undef FONTSIZE 46#endif 47#define LANG_KOREAN 82 48#define LANG_CHINESE 86 49#define LANG_JAPANESE 81 50#define PLACEHOLDER LANGUAGE 51 52// ----------------------------------------------------------------------- 53// version information 54// ----------------------------------------------------------------------- 55 56VS_VERSION_INFO versioninfo 57 fileversion VERSION, SUBVERSION, VERVARIANT, VER_COUNT 58 productversion VERSION, SUBVERSION, VERVARIANT, VER_COUNT 59 fileflagsmask 0x3F 60 fileflags 61#if defined(DEBUG) 62 VS_FF_DEBUG | 63#endif 64#ifdef VER_PREL 65 VS_FF_PRERELEASE | 66#endif 67 0 68#ifndef WIN32 69 fileos VOS_DOS_WINDOWS16 70#else 71 fileos VOS_NT_WINDOWS32 72#endif 73 filetype VFT_APP 74 { 75 block "StringFileInfo" 76 { 77#ifdef LG_D 78 block "040704E4" 79 { 80 // German StringTable 81 value "CompanyName", "OpenOffice.org\0" 82 value "FileDescription", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\0" 83 value "FileVersion", PPS(VER_LEVEL) "\0" 84 value "ProductVersion", PPS(VER_LEVEL) "\0" 85 value "OriginalFilename", "SOREPORT.EXE\0" 86 value "InternalName", "CrashReport\0" 87 value "LegalCopyright", S_CRIGHT " Sun Microsystems, Inc.\0" 88 } 89#else 90 block "040904E4" 91 { 92 // International StringTable 93 value "CompanyName", "OpenOffice.org\0" 94 value "FileDescription", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\0" 95 value "FileVersion", PPS(VER_LEVEL) "\0" 96 value "ProductVersion", PPS(VER_LEVEL) "\0" 97 value "OriginalFilename", "SOREPORT.EXE\0" 98 value "InternalName", "CrashReport\0" 99 value "LegalCopyright", S_CRIGHT " Sun Microsystems, Inc.\0" 100 } 101#endif 102 } 103 104 block "VarFileInfo" 105 { 106#ifdef LG_D 107 value "Translation", 0x0407, 1252 108#else 109 value "Translation", 0x0409, 1252 110#endif 111 } 112 } 113 114 115