mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
rename the curl share error enum prefix
This commit is contained in:
parent
f152f23a68
commit
5fab55383d
@ -928,9 +928,11 @@ typedef void (*curl_unlock_function)(CURL *handle,
|
||||
typedef void CURLSH;
|
||||
|
||||
typedef enum {
|
||||
CURLSH_OK, /* all is fine */
|
||||
CURLSH_BAD_OPTION, /* 1 */
|
||||
CURLSH_LAST /* never use */
|
||||
CURLSHE_OK, /* all is fine */
|
||||
CURLSHE_BAD_OPTION, /* 1 */
|
||||
CURLSHE_IN_USE, /* 2 */
|
||||
CURLSHE_INVALID, /* 3 */
|
||||
CURLSHE_LAST /* never use */
|
||||
} CURLSHcode;
|
||||
|
||||
typedef enum {
|
||||
|
Loading…
Reference in New Issue
Block a user