libcurl.rc 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2007, 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 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 CURLDEBUG
  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", "Copyright 1996-2007 by Daniel Stenberg. http://curl.haxx.se/docs/copyright.html\0"
  52. END
  53. END
  54. BLOCK "VarFileInfo"
  55. BEGIN
  56. VALUE "Translation", 0x409, 1200
  57. END
  58. END