• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/***************************************************************************/
2/*                                                                         */
3/*  ftver.rc                                                               */
4/*                                                                         */
5/*    FreeType VERSIONINFO resource for Windows DLLs.                      */
6/*                                                                         */
7/*  Copyright (C) 2018-2020 by                                             */
8/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9/*                                                                         */
10/*  This file is part of the FreeType project, and may only be used,       */
11/*  modified, and distributed under the terms of the FreeType project      */
12/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
13/*  this file you indicate that you have read the license and              */
14/*  understand and accept it fully.                                        */
15/*                                                                         */
16/***************************************************************************/
17
18
19#include<windows.h>
20
21#define FT_VERSION      2,10,4,0
22#define FT_VERSION_STR  "2.10.4"
23
24VS_VERSION_INFO      VERSIONINFO
25FILEVERSION          FT_VERSION
26PRODUCTVERSION       FT_VERSION
27FILEFLAGSMASK        VS_FFI_FILEFLAGSMASK
28#ifdef _DEBUG
29FILEFLAGS            VS_FF_DEBUG
30#endif
31#ifdef DLL_EXPORT
32FILETYPE             VFT_DLL
33#define FT_FILENAME  "freetype.dll"
34#else
35FILETYPE             VFT_STATIC_LIB
36#define FT_FILENAME  "freetype.lib"
37#endif
38BEGIN
39  BLOCK "StringFileInfo"
40  BEGIN
41    BLOCK "040904E4"
42    BEGIN
43      VALUE "CompanyName",      "The FreeType Project"
44      VALUE "FileDescription",  "Font Rendering Library"
45      VALUE "FileVersion",      FT_VERSION_STR
46      VALUE "ProductName",      "FreeType"
47      VALUE "ProductVersion",   FT_VERSION_STR
48      VALUE "LegalCopyright",   "\251 2000-2020 The FreeType Project www.freetype.org. All rights reserved."
49      VALUE "InternalName",     "freetype"
50      VALUE "OriginalFilename", FT_FILENAME
51    END
52  END
53
54  BLOCK "VarFileInfo"
55  BEGIN
56    /* The following line should only be modified for localized versions.  */
57    /* It consists of any number of WORD,WORD pairs, with each pair        */
58    /* describing a "language,codepage" combination supported by the file. */
59    VALUE "Translation", 0x409, 1252
60  END
61END
62