2011-09-20 19:54:14 -04:00
|
|
|
#ifndef HEADER_CURL_TOOL_EASYSRC_H
|
|
|
|
#define HEADER_CURL_TOOL_EASYSRC_H
|
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-09-02 13:17:33 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-09-20 19:54:14 -04: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.
|
2011-09-20 19:54:14 -04: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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2012-04-06 17:35:15 -04:00
|
|
|
#include "tool_setup.h"
|
2012-02-05 12:44:22 -05:00
|
|
|
#ifndef CURL_DISABLE_LIBCURL_OPTION
|
2011-09-20 19:54:14 -04:00
|
|
|
|
|
|
|
/* global variable declarations, for easy-interface source code generation */
|
|
|
|
|
2015-10-17 17:57:58 -04:00
|
|
|
extern struct slist_wc *easysrc_decl; /* Variable declarations */
|
|
|
|
extern struct slist_wc *easysrc_data; /* Build slists, forms etc. */
|
|
|
|
extern struct slist_wc *easysrc_code; /* Setopt calls etc. */
|
|
|
|
extern struct slist_wc *easysrc_toohard; /* Unconvertible setopt */
|
|
|
|
extern struct slist_wc *easysrc_clean; /* Clean up (reverse order) */
|
2011-09-20 19:54:14 -04:00
|
|
|
|
2017-09-02 13:17:33 -04:00
|
|
|
extern int easysrc_mime_count; /* Number of curl_mime variables */
|
2012-02-23 04:43:37 -05:00
|
|
|
extern int easysrc_slist_count; /* Number of curl_slist variables */
|
|
|
|
|
|
|
|
extern CURLcode easysrc_init(void);
|
2015-10-17 17:57:58 -04:00
|
|
|
extern CURLcode easysrc_add(struct slist_wc **plist, const char *bupf);
|
|
|
|
extern CURLcode easysrc_addf(struct slist_wc **plist,
|
|
|
|
const char *fmt, ...);
|
2012-02-23 04:43:37 -05:00
|
|
|
extern CURLcode easysrc_perform(void);
|
|
|
|
extern CURLcode easysrc_cleanup(void);
|
2014-03-01 08:38:00 -05:00
|
|
|
|
|
|
|
void dumpeasysrc(struct GlobalConfig *config);
|
2011-09-20 19:54:14 -04:00
|
|
|
|
2012-02-23 04:43:37 -05:00
|
|
|
#endif /* CURL_DISABLE_LIBCURL_OPTION */
|
2012-02-05 12:44:22 -05:00
|
|
|
|
2011-09-20 19:54:14 -04:00
|
|
|
#endif /* HEADER_CURL_TOOL_EASYSRC_H */
|