From bad739c0d820309813964aa298c9e073cb3bd72c Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Fri, 27 Sep 2019 00:15:56 -0500 Subject: Fix red lua remove and consolidate some rb plugin functions I'll revisit adding enums once I research it a bit more Change-Id: If10c445cf770e5b90defc543f08d8de0817b2f3d --- apps/plugins/lua/rocklib_aux.pl | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/apps/plugins/lua/rocklib_aux.pl b/apps/plugins/lua/rocklib_aux.pl index a618c3d360..547a628f52 100755 --- a/apps/plugins/lua/rocklib_aux.pl +++ b/apps/plugins/lua/rocklib_aux.pl @@ -21,7 +21,7 @@ # The purpose of this script is to automatically generate Lua wrappers for # (easily) portable C functions used in the Rockbox plugin API. -# It doesn't contain support for structs or pointers (apart from char*). +# It doesn't contain support for enums, structs or pointers (apart from char*). # # The output will be written to /apps/plugins/lua/rocklib_aux.c @@ -193,7 +193,6 @@ EOF ; my %in_types = ('void' => \&in_void, - 'enum' => \&in_int, 'int' => \&in_int, 'unsigned' => \&in_int, 'unsignedint' => \&in_int, @@ -246,12 +245,6 @@ sub in_void return "\t(void)L;\n"; } -sub in_null -{ - my ($name, $type, $pos) = @_; - return sprintf("\t%s %s = NULL;\n", $type, $name, $type, $pos) -} - sub in_int { my ($name, $type, $pos) = @_; -- cgit v1.2.3