libcurl.rc 2.1 KB

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