forked from len0rd/rockbox
midi plugin: make local functions static where possible
Change-Id: I702755529f98015586b5b9592ced75cf7591880c
This commit is contained in:
parent
43a940c8cb
commit
8a87b663ed
7 changed files with 10 additions and 9 deletions
|
|
@ -20,6 +20,7 @@
|
|||
****************************************************************************/
|
||||
#include "plugin.h"
|
||||
#include "midiutil.h"
|
||||
#include "midifile.h"
|
||||
|
||||
struct Track * readTrack(int file);
|
||||
int readID(int file);
|
||||
|
|
@ -125,7 +126,7 @@ struct MIDIfile * loadFile(const char * filename)
|
|||
|
||||
int rStatus = 0;
|
||||
/* Returns 0 if done, 1 if keep going */
|
||||
int readEvent(int file, void * dest)
|
||||
static int readEvent(int file, void * dest)
|
||||
{
|
||||
struct Event dummy;
|
||||
struct Event * ev = (struct Event *) dest;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue