libcurl.rc 2.1 KB

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