diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-15 18:34:46 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-15 18:34:46 +0800 |
| commit | cb9020218b20470b483197dd6662c0fae3237e3b (patch) | |
| tree | 8fe3771d7b9e0a9eac8773b67e6eb546e9ff9c23 /rtclient/client.h | |
| parent | ebe1b206455adb101c38873ebf9b08150cda726a (diff) | |
Rename rtclient.h to client.h
for consistency
Diffstat (limited to 'rtclient/client.h')
| -rw-r--r-- | rtclient/client.h | 19 |
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 |