curl_formget_callback

callback function for curl_formget() The void *arg pointer will be the one passed as second argument to curl_formget(). The character buffer passed to it must not be freed. Should return the buffer length passed to it as the argument "len" on success.

extern (C)
alias curl_formget_callback = size_t function
(
void* arg
,
const(char)* buf
,
size_t len
)

Meta