diff options
Diffstat (limited to 'src/splash-plugins')
| -rw-r--r-- | src/splash-plugins/fedora-fade-in/fedora-fade-in.c | 9 | ||||
| -rw-r--r-- | src/splash-plugins/text/text.c | 7 |
2 files changed, 15 insertions, 1 deletions
diff --git a/src/splash-plugins/fedora-fade-in/fedora-fade-in.c b/src/splash-plugins/fedora-fade-in/fedora-fade-in.c index 4ca1859..7d45700 100644 --- a/src/splash-plugins/fedora-fade-in/fedora-fade-in.c +++ b/src/splash-plugins/fedora-fade-in/fedora-fade-in.c @@ -462,6 +462,12 @@ attach_to_event_loop (ply_boot_splash_plugin_t *plugin, plugin); } +void +on_keyboard_input (ply_boot_splash_plugin_t *plugin, + const char *keyboard_input) +{ +} + ply_boot_splash_plugin_interface_t * ply_boot_splash_plugin_get_interface (void) { @@ -472,7 +478,8 @@ ply_boot_splash_plugin_get_interface (void) .show_splash_screen = show_splash_screen, .update_status = update_status, .hide_splash_screen = hide_splash_screen, - .attach_to_event_loop = attach_to_event_loop + .attach_to_event_loop = attach_to_event_loop, + .on_keyboard_input = on_keyboard_input }; return &plugin_interface; diff --git a/src/splash-plugins/text/text.c b/src/splash-plugins/text/text.c index c934c1b..ad00bfa 100644 --- a/src/splash-plugins/text/text.c +++ b/src/splash-plugins/text/text.c @@ -180,6 +180,12 @@ ask_for_password (ply_boot_splash_plugin_t *plugin) return strdup (answer); } +void +on_keyboard_input (ply_boot_splash_plugin_t *plugin, + const char *keyboard_input) +{ +} + ply_boot_splash_plugin_interface_t * ply_boot_splash_plugin_get_interface (void) { @@ -192,6 +198,7 @@ ply_boot_splash_plugin_get_interface (void) .hide_splash_screen = hide_splash_screen, .attach_to_event_loop = attach_to_event_loop, .ask_for_password = ask_for_password, + .on_keyboard_input = on_keyboard_input }; return &plugin_interface; |
