diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-13 15:41:54 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-13 15:41:54 +0800 |
commit | 143f5b64f187497af728a6d921c599dcc99ed807 (patch) | |
tree | ba7264b8748c53c57697f9a1c9bf34db279ed468 /login.h | |
parent | 4cd6fdb93eca409a76b0af860d9a0599b2f95f53 (diff) |
Fix the way libcurl has been used
Diffstat (limited to 'login.h')
-rw-r--r-- | login.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,9 +4,9 @@ #include "request.h" inline void login(const char *username, const char *password, const char *verify, const char *click, - const char *successpage, const char *nextpage, const char *failpage, icclient_handler handler, void *user) + const char *successpage, const char *nextpage, const char *failpage, void (*handler)(icclient_fetch_t *), void *user) { - request(handler, user, &(struct icclient_request_data){ 7, { + request(handler, user, &(struct body){ 7, { { "mv_username", username }, { "mv_password", password }, { "mv_verify", verify }, |