File: Engine_ver.rc

package info (click to toggle)
teckit 2.5.10%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,360 kB
  • sloc: cpp: 41,135; ansic: 4,550; sh: 4,232; perl: 191; makefile: 178; xml: 15
file content (42 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*------------------------------------------------------------------------
Copyright (c) 2008-2016 SIL International. All rights reserved.

Distributable under the terms of either the Common Public License or the
GNU Lesser General Public License, as specified in the LICENSING.txt file.
------------------------------------------------------------------------*/

// 
// Version
// 

#include "version_defs.h"

VS_VERSION_INFO VERSIONINFO
FILEVERSION    	VER_FILEVERSION
PRODUCTVERSION 	VER_PRODUCTVERSION
FILEFLAGSMASK  	VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_DEBUG
FILEOS         	VOS__WINDOWS32
FILETYPE       	VFT_DLL
FILESUBTYPE    	VFT2_UNKNOWN
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "Comments", "TECkit character mapping engine\0"
            VALUE "CompanyName", VER_COMPANY_NAME_STR
            VALUE "FileDescription", "TECkit character mapping engine\0"
            VALUE "FileVersion", VER_FILEVERSION_STR
            VALUE "InternalName", "TECkit_x86\0"
            VALUE "LegalCopyright", VER_COPYRIGHT_STR
            VALUE "OriginalFilename", "TECkit_x86.dll\0"
            VALUE "ProductName", VER_PRODUCT_NAME_STR
            VALUE "ProductVersion", VER_PRODUCTVERSION_STR
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END