blob: d9a3639fb7fcf9da17a6e1bcecc5bfa890e6324b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef RTCLIENT_H
#define RTCLIENT_H
#include "user.h"
#include "ticket.h"
#ifdef __cplusplus
extern "C" {
#endif
bool rtclient_init(const char *server_url);
void rtclient_login(const char *name, const char *password);
void rtclient_user_show(struct rt_user **userptr, const char *name);
void rtclient_ticket_search(struct rt_ticketlist **listptr, const char *query);
void rtclient_ticket_freelist(struct rt_ticketlist *list);
void rtclient_user_free(struct rt_user *user);
void rtclient_cleanup();
#ifdef __cplusplus
}
#endif
#endif // RTCLIENT_H
|