diff options
| author | Guenter Knauf <lists@gknw.net> | 2011-09-26 12:42:15 +0200 | 
|---|---|---|
| committer | Guenter Knauf <lists@gknw.net> | 2011-09-26 12:42:15 +0200 | 
| commit | a1087db5c61c7cc1e8bae09d2abc65a88d1826cf (patch) | |
| tree | a50bf0caa85a78fe854a387fa884d521e1d8ec0f /include | |
| parent | 400055bfaaa1b13b3f3051f69df9630da793dc8b (diff) | |
Added unsigned char* to _curl_is_debug_cb.
Diffstat (limited to 'include')
| -rw-r--r-- | include/curl/typecheck-gcc.h | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/include/curl/typecheck-gcc.h b/include/curl/typecheck-gcc.h index f043a18e4..4e00ca9a4 100644 --- a/include/curl/typecheck-gcc.h +++ b/include/curl/typecheck-gcc.h @@ -521,7 +521,11 @@ typedef int (_curl_progress_callback2)(const void *,     _curl_callback_compatible((expr), _curl_debug_callback1) ||                \     _curl_callback_compatible((expr), _curl_debug_callback2) ||                \     _curl_callback_compatible((expr), _curl_debug_callback3) ||                \ -   _curl_callback_compatible((expr), _curl_debug_callback4)) +   _curl_callback_compatible((expr), _curl_debug_callback4) ||                \ +   _curl_callback_compatible((expr), _curl_debug_callback5) ||                \ +   _curl_callback_compatible((expr), _curl_debug_callback6) ||                \ +   _curl_callback_compatible((expr), _curl_debug_callback7) ||                \ +   _curl_callback_compatible((expr), _curl_debug_callback8))  typedef int (_curl_debug_callback1) (CURL *,      curl_infotype, char *, size_t, void *);  typedef int (_curl_debug_callback2) (CURL *, @@ -530,6 +534,14 @@ typedef int (_curl_debug_callback3) (CURL *,      curl_infotype, const char *, size_t, void *);  typedef int (_curl_debug_callback4) (CURL *,      curl_infotype, const char *, size_t, const void *); +typedef int (_curl_debug_callback5) (CURL *, +    curl_infotype, unsigned char *, size_t, void *); +typedef int (_curl_debug_callback6) (CURL *, +    curl_infotype, unsigned char *, size_t, const void *); +typedef int (_curl_debug_callback7) (CURL *, +    curl_infotype, const unsigned char *, size_t, void *); +typedef int (_curl_debug_callback8) (CURL *, +    curl_infotype, const unsigned char *, size_t, const void *);  /* evaluates to true if expr is of type curl_ssl_ctx_callback or "similar" */  /* this is getting even messier... */ | 
