forked from len0rd/rockbox
mikmod plugin: make functions static when possible
Change-Id: Ic0102071318c55c19952029be6998ecf5f33eb98
This commit is contained in:
parent
cf1e54b21e
commit
c26ab37aca
23 changed files with 107 additions and 107 deletions
|
@ -342,7 +342,7 @@ static MODULE *ML_AllocUniMod(void)
|
|||
return (mf=MikMod_malloc(sizeof(MODULE)));
|
||||
}
|
||||
|
||||
void Player_Free_internal(MODULE *mf)
|
||||
static void Player_Free_internal(MODULE *mf)
|
||||
{
|
||||
if(mf) {
|
||||
Player_Exit_internal(mf);
|
||||
|
@ -443,7 +443,7 @@ MIKMODAPI CHAR* Player_LoadTitle(CHAR* filename)
|
|||
}
|
||||
|
||||
/* Loads a module given an reader */
|
||||
MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious)
|
||||
static MODULE* Player_LoadGeneric_internal(MREADER *reader,int maxchan,int curious)
|
||||
{
|
||||
int t;
|
||||
MLOADER *l;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue