quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

libcurl.rc (2230B)


      1 /***************************************************************************
      2  *                                  _   _ ____  _
      3  *  Project                     ___| | | |  _ \| |
      4  *                             / __| | | | |_) | |
      5  *                            | (__| |_| |  _ <| |___
      6  *                             \___|\___/|_| \_\_____|
      7  *
      8  * Copyright (C) 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.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  * SPDX-License-Identifier: curl
     22  *
     23  ***************************************************************************/
     24 #include <winver.h>
     25 #include "../include/curl/curlver.h"
     26 
     27 LANGUAGE  0, 0
     28 
     29 #define RC_VERSION  LIBCURL_VERSION_MAJOR, LIBCURL_VERSION_MINOR, LIBCURL_VERSION_PATCH, 0
     30 
     31 VS_VERSION_INFO VERSIONINFO
     32   FILEVERSION     RC_VERSION
     33   PRODUCTVERSION  RC_VERSION
     34   FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK
     35 #if defined(DEBUGBUILD) || defined(UNITTESTS) || defined(CURLDEBUG) || defined(_DEBUG)
     36   FILEFLAGS VS_FF_DEBUG
     37 #else
     38   FILEFLAGS 0L
     39 #endif
     40   FILEOS      VOS__WINDOWS32
     41   FILETYPE    VFT_DLL
     42   FILESUBTYPE 0L
     43 
     44 BEGIN
     45   BLOCK "StringFileInfo"
     46   BEGIN
     47     BLOCK "040904b0"
     48     BEGIN
     49       VALUE "CompanyName",      "The curl library, https://curl.se/\0"
     50       VALUE "FileDescription",  "libcurl Shared Library\0"
     51       VALUE "FileVersion",      LIBCURL_VERSION "\0"
     52       VALUE "InternalName",     "libcurl\0"
     53       VALUE "OriginalFilename", "libcurl.dll\0"
     54       VALUE "ProductName",      "The curl library\0"
     55       VALUE "ProductVersion",   LIBCURL_VERSION "\0"
     56       VALUE "LegalCopyright",   "Copyright (C) " LIBCURL_COPYRIGHT "\0"
     57       VALUE "License",          "https://curl.se/docs/copyright.html\0"
     58     END
     59   END
     60 
     61   BLOCK "VarFileInfo"
     62   BEGIN
     63     VALUE "Translation", 0x409, 1200
     64   END
     65 END