File: microhttpd_dll_res_vc.rc

package info (click to toggle)
libmicrohttpd 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,572 kB
  • sloc: ansic: 107,053; sh: 5,357; makefile: 2,131; pascal: 1,591; sed: 16
file content (42 lines) | stat: -rw-r--r-- 1,339 bytes parent folder | download
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
/* W32 resources for .dll */

#include <winresrc.h>

LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
VS_VERSION_INFO VERSIONINFO
  FILEVERSION 1,0,2,0
  PRODUCTVERSION 1,0,2,0
  FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
#if defined(_DEBUG)
  FILEFLAGS      VS_FF_DEBUG
#else
  FILEFLAGS      0
#endif
  FILEOS         VOS_NT_WINDOWS32
  FILETYPE       VFT_DLL
  FILESUBTYPE    VFT2_UNKNOWN
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "04090000"  /* Lang = US English, Charset = ASCII */
        BEGIN
            VALUE "ProductName", "GNU libmicrohttpd\0"
            VALUE "ProductVersion", "1.0.2\0"
            VALUE "FileVersion", "1.0.2\0"
            VALUE "FileDescription", "GNU libmicrohttpd DLL for Windows (VC build)\0"
            VALUE "InternalName", "libmicrohttpd\0"
#if defined(_DEBUG)
            VALUE "OriginalFilename", "libmicrohttpd-dll_d.dll\0"
#else
            VALUE "OriginalFilename", "libmicrohttpd-dll.dll\0"
#endif
            VALUE "CompanyName", "Free Software Foundation\0"
            VALUE "LegalCopyright",  "Copyright (C) 2007-2021 Christian Grothoff, Evgeny Grin, and project contributors\0"
            VALUE "Comments", "http://www.gnu.org/software/libmicrohttpd/\0"
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x0409, 0  /* US English, ASCII */
    END
END