1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

headers: forward declare CURL, CURLM and CURLSH as structs

Instead of typedef'ing to void, typedef to their corresponding actual
struct names to allow compilers to type-check.

Assisted-by: Reinhard Max
This commit is contained in:
Daniel Stenberg 2016-06-21 14:39:33 +02:00
parent 04b4ee5498
commit 9adf3c473a
2 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@
extern "C" { extern "C" {
#endif #endif
typedef void CURL; typedef struct SessionHandle CURL;
/* /*
* libcurl external API function linkage decorations. * libcurl external API function linkage decorations.
@ -2258,7 +2258,7 @@ typedef void (*curl_unlock_function)(CURL *handle,
curl_lock_data data, curl_lock_data data,
void *userptr); void *userptr);
typedef void CURLSH; typedef struct Curl_share CURLSH;
typedef enum { typedef enum {
CURLSHE_OK, /* all is fine */ CURLSHE_OK, /* all is fine */

View File

@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____| * \___|\___/|_| \_\_____|
* *
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
* *
* This software is licensed as described in the file COPYING, which * This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms * you should have received as part of this distribution. The terms
@ -52,7 +52,7 @@
extern "C" { extern "C" {
#endif #endif
typedef void CURLM; typedef struct Curl_multi CURLM;
typedef enum { typedef enum {
CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() or CURLM_CALL_MULTI_PERFORM = -1, /* please call curl_multi_perform() or