ReactOS 0.4.16-dev-1946-g52006dd
options.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  curl_easyoption
 

Macros

#define CURLOT_FLAG_ALIAS   (1<<0)
 

Enumerations

enum  curl_easytype {
  CURLOT_LONG , CURLOT_VALUES , CURLOT_OFF_T , CURLOT_OBJECT ,
  CURLOT_STRING , CURLOT_SLIST , CURLOT_CBPTR , CURLOT_BLOB ,
  CURLOT_FUNCTION
}
 

Functions

CURL_EXTERN const struct curl_easyoptioncurl_easy_option_by_name (const char *name)
 
CURL_EXTERN const struct curl_easyoptioncurl_easy_option_by_id (CURLoption id)
 
CURL_EXTERN const struct curl_easyoptioncurl_easy_option_next (const struct curl_easyoption *prev)
 

Macro Definition Documentation

◆ CURLOT_FLAG_ALIAS

#define CURLOT_FLAG_ALIAS   (1<<0)

Definition at line 47 of file options.h.

Enumeration Type Documentation

◆ curl_easytype

Enumerator
CURLOT_LONG 
CURLOT_VALUES 
CURLOT_OFF_T 
CURLOT_OBJECT 
CURLOT_STRING 
CURLOT_SLIST 
CURLOT_CBPTR 
CURLOT_BLOB 
CURLOT_FUNCTION 

Definition at line 31 of file options.h.

31 {
32 CURLOT_LONG, /* long (a range of values) */
33 CURLOT_VALUES, /* (a defined set or bitmask) */
34 CURLOT_OFF_T, /* curl_off_t (a range of values) */
35 CURLOT_OBJECT, /* pointer (void *) */
36 CURLOT_STRING, /* (char * to zero terminated buffer) */
37 CURLOT_SLIST, /* (struct curl_slist *) */
38 CURLOT_CBPTR, /* (void * passed as-is to a callback) */
39 CURLOT_BLOB, /* blob (struct curl_blob *) */
40 CURLOT_FUNCTION /* function pointer */
curl_easytype
Definition: options.h:31
@ CURLOT_BLOB
Definition: options.h:39
@ CURLOT_VALUES
Definition: options.h:33
@ CURLOT_SLIST
Definition: options.h:37
@ CURLOT_STRING
Definition: options.h:36
@ CURLOT_OFF_T
Definition: options.h:34
@ CURLOT_LONG
Definition: options.h:32
@ CURLOT_CBPTR
Definition: options.h:38
@ CURLOT_OBJECT
Definition: options.h:35
@ CURLOT_FUNCTION
Definition: options.h:40

Function Documentation

◆ curl_easy_option_by_id()

CURL_EXTERN const struct curl_easyoption * curl_easy_option_by_id ( CURLoption  id)

◆ curl_easy_option_by_name()

CURL_EXTERN const struct curl_easyoption * curl_easy_option_by_name ( const char name)

◆ curl_easy_option_next()

CURL_EXTERN const struct curl_easyoption * curl_easy_option_next ( const struct curl_easyoption prev)