mirror of
https://github.com/curl/curl.git
synced 2026-08-26 19:53:31 +03:00
Internal symbols that aren't static are now prefixed with 'Curl_'
This commit is contained in:
parent
9f9cac7402
commit
4031104404
53 changed files with 670 additions and 593 deletions
|
|
@ -36,23 +36,19 @@ struct Form {
|
|||
been sent in a previous invoke */
|
||||
};
|
||||
|
||||
int FormParse(char *string,
|
||||
struct HttpPost **httppost,
|
||||
struct HttpPost **last_post);
|
||||
int Curl_FormInit(struct Form *form, struct FormData *formdata );
|
||||
|
||||
int FormInit(struct Form *form, struct FormData *formdata );
|
||||
|
||||
struct FormData *getFormData(struct HttpPost *post,
|
||||
int *size);
|
||||
struct FormData *Curl_getFormData(struct HttpPost *post,
|
||||
int *size);
|
||||
|
||||
/* fread() emulation */
|
||||
int FormReader(char *buffer,
|
||||
size_t size,
|
||||
size_t nitems,
|
||||
FILE *mydata);
|
||||
int Curl_FormReader(char *buffer,
|
||||
size_t size,
|
||||
size_t nitems,
|
||||
FILE *mydata);
|
||||
|
||||
char *MakeFormBoundary(void);
|
||||
char *Curl_FormBoundary(void);
|
||||
|
||||
void FormFree(struct FormData *);
|
||||
void Curl_FormFree(struct FormData *);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue