source: trunk/kitgen/8.x/blt/win/sample.rc@ 176

Last change on this file since 176 was 175, checked in by demin, 12 years ago

initial commit

File size: 1.0 KB
RevLine 
[175]1// sample.rc - Copyright (C) 2006 Pat Thoyts <patthoyts@users.sourceforge.net>
2//
3// There is no need to modify this file.
4//
5
6#include <winver.h>
7
8VS_VERSION_INFO VERSIONINFO
9 FILEVERSION COMMAVERSION
10 PRODUCTVERSION COMMAVERSION
11 FILEFLAGSMASK 0x3fL
12#ifdef DEBUG
13 FILEFLAGS VS_FF_DEBUG
14#else
15 FILEFLAGS 0x0L
16#endif
17 FILEOS VOS__WINDOWS32
18 FILETYPE VFT_DLL
19 FILESUBTYPE 0x0L
20BEGIN
21 BLOCK "StringFileInfo"
22 BEGIN
23 BLOCK "040904b0"
24 BEGIN
25 VALUE "FileDescription", "Tcl Sample Extension " DOTVERSION "\0"
26 VALUE "OriginalFilename", "sample" VERSION ".dll\0"
27 VALUE "CompanyName", "The Tcl Development Community\0"
28 VALUE "FileVersion", DOTVERSION "\0"
29 VALUE "LegalCopyright", "Copyright \251 1999 Scriptics Corp.\0"
30 VALUE "ProductName", "Tcl Sample Extension " DOTVERSION "\0"
31 VALUE "ProductVersion", DOTVERSION "\0"
32 END
33 END
34 BLOCK "VarFileInfo"
35 BEGIN
36 VALUE "Translation", 0x409, 1200
37 END
38END
Note: See TracBrowser for help on using the repository browser.