summaryrefslogtreecommitdiff
path: root/rtclient/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'rtclient/client.h')
-rw-r--r--rtclient/client.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/rtclient/client.h b/rtclient/client.h
new file mode 100644
index 0000000..dcc8c7e
--- /dev/null
+++ b/rtclient/client.h
@@ -0,0 +1,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