2012-12-28 06:03:09 -05:00
|
|
|
#ifndef HEADER_CURL_EASYIF_H
|
|
|
|
#define HEADER_CURL_EASYIF_H
|
2005-01-10 05:07:07 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-06-21 13:31:24 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2005-01-10 05:07:07 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2005-01-10 05:07:07 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2013-01-03 20:50:28 -05:00
|
|
|
* Prototypes for library-wide functions provided by easy.c
|
2005-01-10 05:07:07 -05:00
|
|
|
*/
|
2013-08-10 16:55:59 -04:00
|
|
|
#ifdef CURLDEBUG
|
2016-06-21 13:31:24 -04:00
|
|
|
CURL_EXTERN CURLcode curl_easy_perform_ev(struct Curl_easy *easy);
|
2013-08-10 16:55:59 -04:00
|
|
|
#endif
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2012-12-28 06:03:09 -05:00
|
|
|
#endif /* HEADER_CURL_EASYIF_H */
|
|
|
|
|