diff options
Diffstat (limited to 'imap/src/c-client/http.h')
-rw-r--r-- | imap/src/c-client/http.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/imap/src/c-client/http.h b/imap/src/c-client/http.h index 9c7464e1..1ddc988b 100644 --- a/imap/src/c-client/http.h +++ b/imap/src/c-client/http.h @@ -107,10 +107,9 @@ typedef struct http_param_s { /* exported prototypes */ HTTPSTREAM *http_open (unsigned char *); -unsigned char *http_post_param(unsigned char *, HTTP_PARAM_S *, int *); -unsigned char *http_post_param2(unsigned char *, HTTP_PARAM_S *, int *); -unsigned char *http_get_param(unsigned char *, HTTP_PARAM_S *, int *); -unsigned char *http_get(unsigned char *, int *); +unsigned char *http_post_param(HTTPSTREAM *, HTTP_PARAM_S *); +unsigned char *http_post_param2(HTTPSTREAM *, HTTP_PARAM_S *); +unsigned char *http_get(HTTPSTREAM *); void http_close (HTTPSTREAM *stream); HTTP_PARAM_S *http_param_get(int); |