Mercurial > mplayer.hg
diff gui/mplayer/gui_common.c @ 32975:0dc9d64cd64e
Make functions static that are only used inside the file.
author | ib |
---|---|
date | Wed, 09 Mar 2011 15:36:10 +0000 |
parents | 9346b986c721 |
children | 4905f5a87357 |
line wrap: on
line diff
--- a/gui/mplayer/gui_common.c Wed Mar 09 14:15:14 2011 +0000 +++ b/gui/mplayer/gui_common.c Wed Mar 09 15:36:10 2011 +0000 @@ -107,7 +107,7 @@ } } -char *Translate(char *str) +static char *Translate(char *str) { static char trbuf[512]; char tmp[512]; @@ -310,7 +310,7 @@ return trbuf; } -void PutImage(txSample *bf, int x, int y, int max, int ofs) +static void PutImage(txSample *bf, int x, int y, int max, int ofs) { int i = 0, ix, iy; uint32_t *buf = NULL; @@ -350,7 +350,7 @@ #endif } -void SimplePotmeterPutImage(txSample *bf, int x, int y, float frac) +static void SimplePotmeterPutImage(txSample *bf, int x, int y, float frac) { int i = 0, w, r, ix, iy; uint32_t *buf = NULL;