curl.rc (2183B)
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 "tool_version.h" 26 27 LANGUAGE 0, 0 28 29 #define RC_VERSION CURL_VERSION_MAJOR, CURL_VERSION_MINOR, CURL_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_APP 42 FILESUBTYPE 0L 43 44 BEGIN 45 BLOCK "StringFileInfo" 46 BEGIN 47 BLOCK "040904b0" 48 BEGIN 49 VALUE "CompanyName", "curl, https://curl.se/\0" 50 VALUE "FileDescription", "The curl executable\0" 51 VALUE "FileVersion", CURL_VERSION "\0" 52 VALUE "InternalName", "curl\0" 53 VALUE "OriginalFilename", "curl.exe\0" 54 VALUE "ProductName", "The curl executable\0" 55 VALUE "ProductVersion", CURL_VERSION "\0" 56 VALUE "LegalCopyright", "Copyright (C) " CURL_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