diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-08 17:58:59 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-08 17:58:59 +0800 |
| commit | c4244b7286dc0b0ac5ba8e0d5ad425a250c68892 (patch) | |
| tree | 91cf2b011608073b5391bc811aa72921068b0d65 /admin.c | |
| parent | 1f24bef71ff1087fab2bffb156314213f42ac962 (diff) | |
Interface for setting login next page
Diffstat (limited to 'admin.c')
| -rw-r--r-- | admin.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,10 +7,11 @@ #include "interchange/admin.h" void interchange_admin_login(const char *username, const char *password, - const char *failpage, void (*handler)(interchange_response *), + const char *nextpage, const char *failpage, + void (*handler)(interchange_response *), void (*callback)(struct interchange_admin *)) { - login(username, password, NULL, "MMLogin", failpage, handler, + login(username, password, NULL, "MMLogin", nextpage, failpage, handler, (void (*)(void *))callback); } |