blob: fa3867628b7645e2554b5021d2855b6aba1e8cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef ICCLIENT_ADMIN_H
#define ICCLIENT_ADMIN_H
struct icclient_admin {
char *name;
char *username;
bool super;
};
#ifdef __cplusplus
extern "C" {
#endif
struct icclient_admin *icclient_admin_login(const char *username,
const char *password, const char *successpage,
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
}
#endif
#endif // ICCLIENT_ADMIN_H
|