diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-18 10:03:47 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-18 10:03:47 +0800 |
| commit | a94e13144f0a971d14d7abef8edf98a0eb9c707e (patch) | |
| tree | f9eebff0fb5a821edb05b3b9b913eee90fe741aa /member.c | |
| parent | 710866e180a9d02c99ad1ce64a2f6bcaff2c975b (diff) | |
Interface for setting successpage
Diffstat (limited to 'member.c')
| -rw-r--r-- | member.c | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -3,22 +3,24 @@ #include "interchange/member.h" void interchange_member_newaccount(const char *username, const char *password, - const char *verify, const char *nextpage, const char *failpage, + const char *verify, const char *nextpage, + const char *successpage, const char *failpage, void (*handler)(interchange_response *), void (*callback)(struct interchange_member *)) { - login(username, password, verify, "NewAccount", - nextpage ? nextpage : "new_account", failpage, handler, + login(username, password, verify, "NewAccount", nextpage ? nextpage + : "new_account", successpage, failpage, handler, (void (*)(void *))callback); } void interchange_member_login(const char *username, const char *password, - const char *nextpage, const char *failpage, - void (*handler)(interchange_response *), + const char *nextpage, const char *successpage, + const char *failpage, void (*handler)(interchange_response *), void (*callback)(struct interchange_member *)) { login(username, password, NULL, "Login", nextpage ? nextpage : "login", - failpage, handler, (void (*)(void *))callback); + successpage, failpage, handler, + (void (*)(void *))callback); } void interchange_member_account(void (*handler)(interchange_response *)) |