summaryrefslogtreecommitdiff
path: root/rtclient.h
blob: dd3cb61fcd9e5775d1c699dd9346ec0a00357dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef RTCLIENT_H
#define RTCLIENT_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(const char *name);
	void rtclient_search(const char *query);
	void rtclient_cleanup();

#ifdef __cplusplus
}
#endif

#endif // RTCLIENT_H