diff options
Diffstat (limited to 'rtclient.h')
-rw-r--r-- | rtclient.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/rtclient.h b/rtclient.h new file mode 100644 index 0000000..dac2198 --- /dev/null +++ b/rtclient.h @@ -0,0 +1,16 @@ +#ifndef RTCLIENT_H +#define RTCLIENT_H + +#ifdef __cplusplus +extern "C" { +#endif + + bool rtclient_init(const char *url, const char *certificate); + void rtclient_login(const char *name, const char *password); + void rtclient_cleanup(); + +#ifdef __cplusplus +} +#endif + +#endif |