diff options
Diffstat (limited to 'rtclient.h')
| -rw-r--r-- | rtclient.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,13 +1,15 @@ #ifndef RTCLIENT_H #define RTCLIENT_H +#include "rtuser.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); + struct rt_user *rtclient_user(const char *name); void rtclient_search(const char *query); void rtclient_cleanup(); |