summaryrefslogtreecommitdiff
path: root/rtclient/client.h
blob: dcc8c7ef987039cbdb9f4438b4e9942a0415ab36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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_cleanup();

#ifdef __cplusplus
}
#endif

#endif // RTCLIENT_H