Annotation of embedaddon/curl/lib/libcurl.rc, revision 1.1
1.1 ! misho 1: /***************************************************************************
! 2: * _ _ ____ _
! 3: * Project ___| | | | _ \| |
! 4: * / __| | | | |_) | |
! 5: * | (__| |_| | _ <| |___
! 6: * \___|\___/|_| \_\_____|
! 7: *
! 8: * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
! 9: *
! 10: * This software is licensed as described in the file COPYING, which
! 11: * you should have received as part of this distribution. The terms
! 12: * are also available at https://curl.haxx.se/docs/copyright.html.
! 13: *
! 14: * You may opt to use, copy, modify, merge, publish, distribute and/or sell
! 15: * copies of the Software, and permit persons to whom the Software is
! 16: * furnished to do so, under the terms of the COPYING file.
! 17: *
! 18: * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
! 19: * KIND, either express or implied.
! 20: *
! 21: ***************************************************************************/
! 22: #include <winver.h>
! 23: #include "../include/curl/curlver.h"
! 24:
! 25: LANGUAGE 0, 0
! 26:
! 27: #define RC_VERSION LIBCURL_VERSION_MAJOR, LIBCURL_VERSION_MINOR, LIBCURL_VERSION_PATCH, 0
! 28:
! 29: VS_VERSION_INFO VERSIONINFO
! 30: FILEVERSION RC_VERSION
! 31: PRODUCTVERSION RC_VERSION
! 32: FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
! 33: #if defined(DEBUGBUILD) || defined(_DEBUG)
! 34: FILEFLAGS VS_FF_DEBUG
! 35: #else
! 36: FILEFLAGS 0L
! 37: #endif
! 38: FILEOS VOS__WINDOWS32
! 39: FILETYPE VFT_DLL
! 40: FILESUBTYPE 0L
! 41:
! 42: BEGIN
! 43: BLOCK "StringFileInfo"
! 44: BEGIN
! 45: BLOCK "040904b0"
! 46: BEGIN
! 47: VALUE "CompanyName", "The curl library, https://curl.haxx.se/\0"
! 48: VALUE "FileDescription", "libcurl Shared Library\0"
! 49: VALUE "FileVersion", LIBCURL_VERSION "\0"
! 50: VALUE "InternalName", "libcurl\0"
! 51: VALUE "OriginalFilename", "libcurl.dll\0"
! 52: VALUE "ProductName", "The curl library\0"
! 53: VALUE "ProductVersion", LIBCURL_VERSION "\0"
! 54: VALUE "LegalCopyright", "\xa9 " LIBCURL_COPYRIGHT "\0" /* a9: Copyright symbol */
! 55: VALUE "License", "https://curl.haxx.se/docs/copyright.html\0"
! 56: END
! 57: END
! 58:
! 59: BLOCK "VarFileInfo"
! 60: BEGIN
! 61: VALUE "Translation", 0x409, 1200
! 62: END
! 63: END
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>