Skip to content

Commit

Permalink
rename the curl share error enum prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jan 9, 2003
1 parent f152f23 commit 5fab553
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions include/curl/curl.h
Expand Up @@ -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 {
Expand Down

0 comments on commit 5fab553

Please sign in to comment.