summaryrefslogtreecommitdiff
path: root/login.h
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-17 21:46:39 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-17 21:46:39 +0800
commit71e1c7fc557e68743c4a8028b2d6675639be16cc (patch)
tree3003226c02ab5c3bf8527e3bbb4b6d151a2af34b /login.h
parent0ca65138cf02d6c46e1857e911a142d08cdad761 (diff)
Make login functions asynchronous compatible
Diffstat (limited to 'login.h')
-rw-r--r--login.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/login.h b/login.h
index 2ea4e17..57d3446 100644
--- a/login.h
+++ b/login.h
@@ -4,9 +4,9 @@
#include "request.h"
static inline void login(const char *username, const char *password, const char *verify, const char *click,
- void (*handler)(icclient_fetch_t *), void *user)
+ void (*handler)(icclient_fetch_t *), void (*callback)(void *))
{
- request(handler, user, &(struct body){ 4, {
+ request(handler, callback, &(struct body){ 4, {
{ "mv_username", username },
{ "mv_password", password },
{ "mv_verify", verify },