libcurl.rc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. LANGUAGE 0, 0
  27. #define RC_VERSION LIBCURL_VERSION_MAJOR, LIBCURL_VERSION_MINOR, LIBCURL_VERSION_PATCH, 0
  28. VS_VERSION_INFO VERSIONINFO
  29. FILEVERSION RC_VERSION
  30. PRODUCTVERSION RC_VERSION
  31. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  32. #if defined(DEBUGBUILD) || defined(_DEBUG)
  33. FILEFLAGS VS_FF_DEBUG
  34. #else
  35. FILEFLAGS 0L
  36. #endif
  37. FILEOS VOS__WINDOWS32
  38. FILETYPE VFT_DLL
  39. FILESUBTYPE 0L
  40. BEGIN
  41. BLOCK "StringFileInfo"
  42. BEGIN
  43. BLOCK "040904b0"
  44. BEGIN
  45. VALUE "CompanyName", "The curl library, https://curl.se/\0"
  46. VALUE "FileDescription", "libcurl Shared Library\0"
  47. VALUE "FileVersion", LIBCURL_VERSION "\0"
  48. VALUE "InternalName", "libcurl\0"
  49. VALUE "OriginalFilename", "libcurl.dll\0"
  50. VALUE "ProductName", "The curl library\0"
  51. VALUE "ProductVersion", LIBCURL_VERSION "\0"
  52. VALUE "LegalCopyright", "Copyright (C) " LIBCURL_COPYRIGHT "\0"
  53. VALUE "License", "https://curl.se/docs/copyright.html\0"
  54. END
  55. END
  56. BLOCK "VarFileInfo"
  57. BEGIN
  58. VALUE "Translation", 0x409, 1200
  59. END
  60. END