curlx.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #ifndef HEADER_CURL_CURLX_H
  2. #define HEADER_CURL_CURLX_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Daniel Stenberg, <[email protected]>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. /*
  27. * Defines protos and includes all header files that provide the curlx_*
  28. * functions. The curlx_* functions are not part of the libcurl API, but are
  29. * stand-alone functions whose sources can be built and linked by apps if need
  30. * be.
  31. */
  32. #include "binmode.h"
  33. /* "binmode.h" provides macro CURLX_SET_BINMODE() */
  34. #include "nonblock.h"
  35. /* "nonblock.h" provides curlx_nonblock() */
  36. #include "warnless.h"
  37. /* "warnless.h" provides functions:
  38. curlx_ultous()
  39. curlx_ultouc()
  40. curlx_uztosi()
  41. */
  42. #include "multibyte.h"
  43. /* "multibyte.h" provides these functions and macros:
  44. curlx_convert_UTF8_to_wchar()
  45. curlx_convert_wchar_to_UTF8()
  46. curlx_convert_UTF8_to_tchar()
  47. curlx_convert_tchar_to_UTF8()
  48. curlx_unicodefree()
  49. */
  50. #include "version_win32.h"
  51. /* provides curlx_verify_windows_version() */
  52. #include "strparse.h"
  53. /* The curlx_str_* parsing functions */
  54. #include "dynbuf.h"
  55. /* The curlx_dyn_* functions */
  56. #include "base64.h"
  57. #include "timeval.h"
  58. #include "timediff.h"
  59. #include "wait.h"
  60. /* for curlx_wait_ms */
  61. #include "winapi.h"
  62. /* for curlx_winapi_strerror */
  63. #include "inet_pton.h"
  64. /* for curlx_inet_pton */
  65. #include "inet_ntop.h"
  66. /* for curlx_inet_ntop */
  67. #endif /* HEADER_CURL_CURLX_H */