1
0
Fork 0
forked from len0rd/rockbox

put the parameter name in the function prototype

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11406 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2006-10-31 11:30:37 +00:00
parent 29e259a291
commit 0218a155b0

View file

@ -88,7 +88,7 @@ extern unsigned char pluginbuf[];
/* for actual plugins only, not for codecs */ /* for actual plugins only, not for codecs */
static bool plugin_loaded = false; static bool plugin_loaded = false;
static int plugin_size = 0; static int plugin_size = 0;
static bool (*pfn_tsr_exit)(bool) = NULL; /* TSR exit callback */ static bool (*pfn_tsr_exit)(bool reenter) = NULL; /* TSR exit callback */
static char current_plugin[MAX_PATH]; static char current_plugin[MAX_PATH];
static const struct plugin_api rockbox_api = { static const struct plugin_api rockbox_api = {