summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index 8eab08f987..5f0143efbb 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -287,6 +287,14 @@ RB_WRAP(do_menu)
287 return 1; 287 return 1;
288} 288}
289 289
290RB_WRAP(splash_scroller)
291{
292 int timeout = luaL_checkint(L, 1);
293 const char *str = luaL_checkstring(L, 2);
294 int action = splash_scroller(timeout, str); /*rockaux.c*/
295 lua_pushinteger(L, action);
296 return 1;
297}
290 298
291/* DEVICE AUDIO / PLAYLIST CONTROL */ 299/* DEVICE AUDIO / PLAYLIST CONTROL */
292 300
@@ -948,6 +956,7 @@ static const luaL_Reg rocklib[] =
948 RB_FUNC(kbd_input), 956 RB_FUNC(kbd_input),
949 RB_FUNC(gui_syncyesno_run), 957 RB_FUNC(gui_syncyesno_run),
950 RB_FUNC(do_menu), 958 RB_FUNC(do_menu),
959 RB_FUNC(splash_scroller),
951 960
952 /* DEVICE AUDIO / SOUND / PLAYLIST CONTROL */ 961 /* DEVICE AUDIO / SOUND / PLAYLIST CONTROL */
953 RB_FUNC(audio), 962 RB_FUNC(audio),