summaryrefslogtreecommitdiff
path: root/icclient
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-07-12 20:08:31 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-07-12 20:08:31 +0800
commit3f5ece56ba0aa55be5c6a7973866ffda432de1ce (patch)
treed7db0fbe47dd7f6deecd55b829430e111ed88569 /icclient
parentf2cdda353b0da0ec19679ac8753fbe2d17471fd9 (diff)
login functions return users
Diffstat (limited to 'icclient')
-rw-r--r--icclient/admin.h14
-rw-r--r--icclient/member.h14
2 files changed, 17 insertions, 11 deletions
diff --git a/icclient/admin.h b/icclient/admin.h
index faff559..fa38676 100644
--- a/icclient/admin.h
+++ b/icclient/admin.h
@@ -1,15 +1,21 @@
#ifndef ICCLIENT_ADMIN_H
#define ICCLIENT_ADMIN_H
+struct icclient_admin {
+ char *name;
+ char *username;
+ bool super;
+};
+
#ifdef __cplusplus
extern "C" {
#endif
- void icclient_admin_login(size_t (*handler)(void *, size_t, size_t, void *),
- struct icclient_member *member, const char *username,
+ struct icclient_admin *icclient_admin_login(const char *username,
const char *password, const char *successpage,
- const char *nextpage, const char *failpage);
- void icclient_admin_logout();
+ const char *nextpage, const char *failpage,
+ size_t (*handler)(void *, size_t, size_t, void *));
+ void icclient_admin_logout(struct icclient_admin *admin);
#ifdef __cplusplus
}
diff --git a/icclient/member.h b/icclient/member.h
index a91c5d6..d68f814 100644
--- a/icclient/member.h
+++ b/icclient/member.h
@@ -55,21 +55,21 @@ struct icclient_member {
extern "C" {
#endif
- void icclient_member_newaccount(size_t (*handler)(void *, size_t, size_t, void *),
- struct icclient_member *member, const char *username,
+ struct icclient_member *icclient_member_newaccount(const char *username,
const char *password, const char *verify, const char *successpage,
- const char *nextpage, const char *failpage);
- void icclient_member_login(size_t (*handler)(void *, size_t, size_t, void *),
- struct icclient_member *member, const char *username,
+ const char *nextpage, const char *failpage,
+ size_t (*handler)(void *, size_t, size_t, void *));
+ struct icclient_member *icclient_member_login(const char *username,
const char *password, const char *successpage,
- const char *nextpage, const char *failpage);
+ const char *nextpage, const char *failpage,
+ size_t (*handler)(void *, size_t, size_t, void *));
void icclient_member_account(const char *fname, const char *lname,
const char *address1, const char *address2, const char *city,
const char *state, const char *zip, const char *email,
const char *phone_day);
void icclient_member_changepassword(const char *password_old, const char *password,
const char *verify);
- void icclient_member_logout();
+ void icclient_member_logout(struct icclient_member *member);
#ifdef __cplusplus
}