From a94e13144f0a971d14d7abef8edf98a0eb9c707e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Sat, 18 Mar 2023 10:03:47 +0800 Subject: Interface for setting successpage --- member.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'member.c') diff --git a/member.c b/member.c index 228ebc4..6034c10 100644 --- a/member.c +++ b/member.c @@ -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 *)) -- cgit v1.2.3