blob: bdf6965b1559b59e9da50d2d52c9fead6fa8bb57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef RTCLIENT_H
#define RTCLIENT_H
#include "rtuser.h"
#ifdef __cplusplus
extern "C" {
#endif
bool rtclient_init(const char *server_url);
void rtclient_login(const char *name, const char *password);
struct rt_user *rtclient_user(const char *name);
void rtclient_search(const char *query);
void rtclient_cleanup();
#ifdef __cplusplus
}
#endif
#endif // RTCLIENT_H
|