Mercurial > mplayer.hg
changeset 23194:41bbba7c3850
Remove useless extern before function prototypes
author | reimar |
---|---|
date | Wed, 02 May 2007 16:17:16 +0000 |
parents | 7857af1ca50b |
children | c627c0ec88cf |
files | gui/bitmap.h |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/bitmap.h Wed May 02 14:39:55 2007 +0000 +++ b/gui/bitmap.h Wed May 02 16:17:16 2007 +0000 @@ -10,9 +10,9 @@ char * Image; } txSample; -extern int bpRead( char * fname, txSample * bf ); -extern int conv24to32( txSample * bf ); -extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); -extern void Convert1to32( txSample * in,txSample * out ); +int bpRead( char * fname, txSample * bf ); +int conv24to32( txSample * bf ); +void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); +void Convert1to32( txSample * in,txSample * out ); #endif /* __BITMAP_H */