blob: 1ba73c7df25c212f608ef744de66448353664c09 (
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
25
26
27
|
#ifndef ICCLIENT_ADMIN_H
#define ICCLIENT_ADMIN_H
struct icclient_admin {
char *username;
char *password;
char *name;
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_newitem(const char *description, const char *comment,
const char *price, const char *image_path);
void icclient_admin_logout(struct icclient_admin *admin);
#ifdef __cplusplus
}
#endif
#endif // ICCLIENT_ADMIN_H
|