1/* 2 * Copyright (c) 2005 Mike McCormack 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19#include "winver.h" 20 21VS_VERSION_INFO VERSIONINFO 22FILEVERSION 1,0,0,0 23PRODUCTVERSION 1,0,0,0 24FILEFLAGSMASK 63 25FILEFLAGS 0 26FILEOS VOS_UNKNOWN 27FILETYPE VFT_APP 28FILESUBTYPE VFT2_UNKNOWN 29{ 30 BLOCK "StringFileInfo" 31 { 32 BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP1252 */ 33 { 34 /* list of strings that partially match in arbitrary order */ 35 VALUE "Product", "Product" 36 VALUE "CompanyName", "CompanyName" 37 VALUE "FileDescription", "FileDescription" 38 VALUE "Internal", "Internal" 39 VALUE "ProductVersion", "ProductVersion" 40 VALUE "InternalName", "InternalName" 41 VALUE "File", "File" 42 VALUE "LegalCopyright", "LegalCopyright" 43 VALUE "FileVersion", "FileVersion" 44 VALUE "Legal", "Legal" 45 VALUE "OriginalFilename", "OriginalFilename" 46 VALUE "ProductName", "ProductName" 47 VALUE "Company", "Company" 48 VALUE "Original", "Original" 49 } 50 } 51 BLOCK "VarFileInfo" 52 { 53 VALUE "Translation", 0x0409,1252 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP1252 */ 54 } 55} 56