diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-16 07:07:00 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-16 07:07:00 +0800 |
commit | 5ada0f76cc310c97d0cf8791ac321d9ac8a2a81e (patch) | |
tree | 30b9fbbd001a6d8c7aa72feeef03f6d1d4957d89 /member.c | |
parent | 5f242cff9c418526cf88427afd6a74f56751f9b6 (diff) |
Re-add failpage parameter
Diffstat (limited to 'member.c')
-rw-r--r-- | member.c | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -2,16 +2,21 @@ #include "login.h" #include "interchange/member.h" -void interchange_member_newaccount(const char *username, const char *password, const char *verify, - void (*handler)(interchange_response *), void (*callback)(struct interchange_member *)) +void interchange_member_newaccount(const char *username, const char *password, + const char *verify, const char *failpage, + void (*handler)(interchange_response *), + void (*callback)(struct interchange_member *)) { - login(username, password, verify, "NewAccount", handler, (void (*)(void *))callback); + login(username, password, verify, "NewAccount", failpage, handler, + (void (*)(void *))callback); } -void interchange_member_login(const char *username, const char *password, void (*handler)(interchange_response *), +void interchange_member_login(const char *username, const char *password, + const char *failpage, void (*handler)(interchange_response *), void (*callback)(struct interchange_member *)) { - login(username, password, NULL, "Login", handler, (void (*)(void *))callback); + login(username, password, NULL, "Login", failpage, handler, + (void (*)(void *))callback); } void interchange_member_account(const char *fname, const char *lname, const char *address1, |