dafs-kill-xcpu-dump-vlru-stats-20080318
[openafs.git] / src / WINNT / afsrdr / afsrdr.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 /* Define VERSIONINFO resource */
11
12 #define  AFS_VERINFO_FILE_DESCRIPTION "AFS Network Redirector Driver"
13 #define AFS_VERINFO_NAME "afsrdr"
14 #define AFS_VERINFO_FILENAME "afsrdr.sys"
15
16 #include "..\afsd\AFS_component_version_number.h"
17
18 #include <winver.h>
19
20 1 VERSIONINFO
21     FILEVERSION AFS_VERINFO_FILEVER
22     PRODUCTVERSION AFS_VERINFO_FILEVER
23     FILEOS VOS_NT
24 #ifdef AFS_VERINFO_DLL
25     FILETYPE VFT_DLL
26 #else
27     FILETYPE VFT_APP
28 #endif
29 BEGIN
30     BLOCK "StringFileInfo"
31     /* FileVersion must be specified or data won't appear on properties tab */
32     /* Internalname and originalfilename must be specified or explorer won't
33        show version and description */
34     BEGIN
35         BLOCK "000004E4"
36         BEGIN
37             VALUE "CompanyName",        "OpenAFS Project", "\0"
38             VALUE "LegalCopyright",     "Copyright \251 the Regents of the University of Michigan, 2005.", "\0"
39             VALUE "ProductName",        "OpenAFS for Windows", "\0"
40             VALUE "ProductVersion",     "1.0", "\0"
41             VALUE "FileVersion",        "1.0", "\0"
42             VALUE "FileDescription",    AFS_VERINFO_FILE_DESCRIPTION, "\0"
43             VALUE "Build",              AFS_VERINFO_BUILD, "\0"
44             VALUE "InternalName",       AFS_VERINFO_NAME, "\0"
45             VALUE "OriginalFilename",   AFS_VERINFO_FILENAME, "\0"
46         END
47     END
48     /* files in msi's are supposed to have language codes attached to them.
49        this is how they get populated automatically */
50     BLOCK "VarFileInfo"
51     BEGIN
52 #ifdef AFS_VERINFO_LANG_CODE
53         VALUE "Translation", AFS_VERINFO_LANG_CODE, AFS_VERINFO_CHARSET
54 #else
55 /* default to 0, 1252 */
56         VALUE "Translation", 0, 0x4e4
57 #endif
58     END
59 END