summaryrefslogtreecommitdiff
path: root/interchange
diff options
context:
space:
mode:
Diffstat (limited to 'interchange')
-rw-r--r--interchange/admin.h4
-rw-r--r--interchange/member.h7
2 files changed, 6 insertions, 5 deletions
diff --git a/interchange/admin.h b/interchange/admin.h
index d50a1e4..eccace7 100644
--- a/interchange/admin.h
+++ b/interchange/admin.h
@@ -22,8 +22,8 @@ extern "C" {
#endif
void interchange_admin_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_admin *));
void interchange_admin_new_admin(const char *username, const char *password, const char *name, bool super,
enum interchange_admin_group group, void (*handler)(interchange_response *));
diff --git a/interchange/member.h b/interchange/member.h
index e4aad8d..117218c 100644
--- a/interchange/member.h
+++ b/interchange/member.h
@@ -64,12 +64,13 @@ extern "C" {
#endif
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 *));
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 *));
/*!