diff options
Diffstat (limited to 'rtclient.h')
| -rw-r--r-- | rtclient.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ #define RTCLIENT_H #include "rtuser.h" +#include "rtticket.h" #ifdef __cplusplus extern "C" { @@ -10,7 +11,7 @@ extern "C" { bool rtclient_init(const char *server_url); void rtclient_login(const char *name, const char *password); void rtclient_userget(struct rt_user **userptr, const char *name); - void rtclient_search(const char *query); + void rtclient_search(struct rt_ticketlist **listptr, const char *query); void rtclient_userfree(struct rt_user *user); void rtclient_cleanup(); |