web
Last change
on this file since f6f3e91 was
f6f3e91,
checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago
|
Preserve directory hierarchy (not sure what happened to it)
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | #include <config.h> |
---|
2 | #include <winver.h> |
---|
3 | #include <winresrc.h> |
---|
4 | // |
---|
5 | // Version |
---|
6 | // |
---|
7 | |
---|
8 | VS_VERSION_INFO VERSIONINFO |
---|
9 | FILEVERSION VERSION_MAJOR,VERSION_MINOR,0,0 |
---|
10 | PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,0,0 |
---|
11 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
---|
12 | |
---|
13 | #ifdef DEBUG |
---|
14 | FILEFLAGS VS_FF_DEBUG |
---|
15 | #endif |
---|
16 | |
---|
17 | FILEOS VOS__WINDOWS32 |
---|
18 | FILETYPE VFT_APP |
---|
19 | FILESUBTYPE 0x0L |
---|
20 | BEGIN |
---|
21 | BLOCK "StringFileInfo" |
---|
22 | BEGIN |
---|
23 | // 0x0409 == U.S. English; 0x04E4 => Windows Multilingual |
---|
24 | BLOCK "040904E4" |
---|
25 | BEGIN |
---|
26 | VALUE "CompanyName", "\0" |
---|
27 | VALUE "FileDescription", "remctl\0" |
---|
28 | VALUE "FileVersion", VERSION_MAJOR_STR ", " VERSION_MINOR_STR ", 0, 0\0" |
---|
29 | VALUE "InternalName", "REMCTL\0" |
---|
30 | VALUE "LegalCopyright", "Copyright 2002-2008 Board of Trustees, Leland Stanford Jr. University.\0" |
---|
31 | VALUE "LegalTrademarks", "\0" |
---|
32 | VALUE "OriginalFilename", "REMCTL.DLL\0" |
---|
33 | VALUE "ProductName", "remctl\0" |
---|
34 | VALUE "ProductVersion", VERSION_MAJOR_STR ", " VERSION_MINOR_STR ", 0, 0\0" |
---|
35 | END |
---|
36 | END |
---|
37 | BLOCK "VarFileInfo" |
---|
38 | BEGIN |
---|
39 | VALUE "Translation", 0x409, 0x4E4 |
---|
40 | END |
---|
41 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.