1
0
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:
Daniel Stenberg 2003-01-09 10:26:29 +00:00
parent f152f23a68
commit 5fab55383d

View File

@ -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 {