9 #ifndef C_API_GUI_CONTROLS_TEXT_BOX_H    10 #define C_API_GUI_CONTROLS_TEXT_BOX_H    12 #include "../definitions.h"    21     void (*set_visible)(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle, 
bool visible);
    22     void (*reset)(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
    23     void (*set_text)(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle, 
const char* text);
    24     char* (*get_text)(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
    25     void (*scroll)(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle, 
unsigned int scroll);
    26     void (*set_auto_scrolling)(
    27         KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle, 
int delay, 
int time, 
int repeat);
 Definition: text_box.h:19