11 #include "addons/kodi-dev-kit/include/kodi/c-api/gui/controls/radio_button.h" 45 static void set_visible(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
bool visible);
46 static void set_enabled(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
bool enabled);
48 static void set_label(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
const char* label);
49 static char* get_label(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
51 static void set_selected(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
bool selected);
52 static bool is_selected(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
Main structure passed from kodi to addon with basic information needed to create add-on.
Definition: addon_base.h:378