summaryrefslogtreecommitdiffstats
path: root/src/splash-plugins/text
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-05-18 22:57:15 -0400
committerRay Strode <rstrode@redhat.com>2008-05-18 22:57:15 -0400
commitea56f6e68cfc42ca165d1964e4410739b519879b (patch)
tree10246c7fc63ca3be2fce8ed121005ca4ab58760d /src/splash-plugins/text
parent6b0f2e44af979924711786e6966cbb974409e799 (diff)
pass keyboard input on to plugins
Diffstat (limited to 'src/splash-plugins/text')
-rw-r--r--src/splash-plugins/text/text.c7
1 files changed, 7 insertions, 0 deletions
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;