9 #ifndef C_API_GUI_DIALOGS_KEYBOARD_H    10 #define C_API_GUI_DIALOGS_KEYBOARD_H    12 #include "../definitions.h"    21     bool (*show_and_get_input_with_head)(KODI_HANDLE kodiBase,
    25                                          bool allow_empty_result,
    27                                          unsigned int auto_close_ms);
    28     bool (*show_and_get_input)(KODI_HANDLE kodiBase,
    31                                bool allow_empty_result,
    32                                unsigned int auto_close_ms);
    33     bool (*show_and_get_new_password_with_head)(KODI_HANDLE kodiBase,
    34                                                 const char* password_in,
    37                                                 bool allow_empty_result,
    38                                                 unsigned int auto_close_ms);
    39     bool (*show_and_get_new_password)(KODI_HANDLE kodiBase,
    40                                       const char* password_in,
    42                                       unsigned int auto_close_ms);
    43     bool (*show_and_verify_new_password_with_head)(KODI_HANDLE kodiBase,
    46                                                    bool allow_empty_result,
    47                                                    unsigned int auto_close_ms);
    48     bool (*show_and_verify_new_password)(KODI_HANDLE kodiBase,
    50                                          unsigned int auto_close_ms);
    51     int (*show_and_verify_password)(KODI_HANDLE kodiBase,
    52                                     const char* password_in,
    56                                     unsigned int auto_close_ms);
    57     bool (*show_and_get_filter)(KODI_HANDLE kodiBase,
    61                                 unsigned int auto_close_ms);
    62     bool (*send_text_to_active_keyboard)(KODI_HANDLE kodiBase,
    65     bool (*is_keyboard_activated)(KODI_HANDLE kodiBase);
 Definition: keyboard.h:19