Commit | Line | Data |
---|---|---|
e7425a5b SL |
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 | |
360a3f91 | 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
e7425a5b SL |
17 | */ |
18 | ||
31368dec DT |
19 | #include "windef.h" |
20 | #include "winbase.h" | |
21 | #include "winver.h" | |
e7425a5b | 22 | |
31368dec DT |
23 | VS_VERSION_INFO VERSIONINFO |
24 | FILEVERSION 1,0,0,0 | |
25 | PRODUCTVERSION 1,0,0,0 | |
26 | FILEFLAGSMASK 63 | |
27 | FILEFLAGS 0 | |
28 | FILEOS VOS_UNKNOWN | |
29 | FILETYPE VFT_APP | |
30 | FILESUBTYPE VFT2_UNKNOWN | |
31 | { | |
32 | BLOCK "StringFileInfo" | |
33 | { | |
34 | BLOCK "040904E4" /* LANG_ENGLISH/SUBLANG_DEFAULT, CP1252 */ | |
35 | { | |
36 | /* list of strings that partially match in arbitrary order */ | |
37 | VALUE "Product", "Product" | |
38 | VALUE "CompanyName", "CompanyName" | |
39 | VALUE "FileDescription", "FileDescription" | |
40 | VALUE "Internal", "Internal" | |
41 | VALUE "ProductVersion", "ProductVersion" | |
42 | VALUE "InternalName", "InternalName" | |
43 | VALUE "File", "File" | |
44 | VALUE "LegalCopyright", "LegalCopyright" | |
45 | VALUE "FileVersion", "FileVersion" | |
46 | VALUE "Legal", "Legal" | |
47 | VALUE "OriginalFilename", "OriginalFilename" | |
48 | VALUE "ProductName", "ProductName" | |
49 | VALUE "Company", "Company" | |
50 | VALUE "Original", "Original" | |
51 | } | |
52 | } | |
53 | BLOCK "VarFileInfo" | |
54 | { | |
55 | VALUE "Translation", 0x0409,1252 /* LANG_ENGLISH/SUBLANG_DEFAULT, CP1252 */ | |
56 | } | |
57 | } |