windows-version-1-5-20050817
[openafs.git] / src / config / NTVersioninfo.rc
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <winver.h>
11
12 1 VERSIONINFO
13     FILEVERSION AFS_VERINFO_FILEVER
14     PRODUCTVERSION AFS_VERINFO_FILEVER
15     FILEOS VOS_NT
16 #ifdef AFS_VERINFO_DLL
17     FILETYPE VFT_DLL
18 #else
19     FILETYPE VFT_APP
20 #endif
21 BEGIN
22     BLOCK "StringFileInfo"
23     /* FileVersion must be specified or data won't appear on properties tab */
24     /* Internalname and originalfilename must be specified or explorer won't
25        show version and description */
26     BEGIN
27         BLOCK "000004E4"
28         BEGIN
29             VALUE "CompanyName",        "OpenAFS Project", "\0"
30             VALUE "LegalCopyright",     "Copyright \251 IBM Corporation and others, 1998, 1999, 2000, 2001, 2002, 2003.", "\0"
31             VALUE "ProductName",        "OpenAFS for Windows", "\0"
32             VALUE "ProductVersion",     AFSPRODUCT_VERSION, "\0"
33             VALUE "FileVersion",        AFSPRODUCT_VERSION, "\0"
34             VALUE "FileDescription",    AFS_VERINFO_FILE_DESCRIPTION, "\0"
35             VALUE "Build",              AFS_VERINFO_BUILD, "\0"
36             VALUE "InternalName",       AFS_VERINFO_NAME, "\0"
37             VALUE "OriginalFilename",   AFS_VERINFO_FILENAME, "\0"
38         END
39     END
40     /* files in msi's are supposed to have language codes attached to them.
41        this is how they get populated automatically */
42     BLOCK "VarFileInfo"
43     BEGIN
44 #ifdef AFS_VERINFO_LANG_CODE
45         VALUE "Translation", AFS_VERINFO_LANG_CODE, AFS_VERINFO_CHARSET
46 #else
47 /* default to 0, 1252 */
48         VALUE "Translation", 0, 0x4e4
49 #endif
50     END
51 END