mirror of
https://github.com/curl/curl.git
synced 2026-07-23 02:27:16 +03:00
rename the curl share error enum prefix
This commit is contained in:
parent
f152f23a68
commit
5fab55383d
1 changed files with 5 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue