annotate gui/mplayer/gui_common.h @ 25603:01754b23193e

Rename common.[ch], there are too many files by that name.
author diego
date Sun, 06 Jan 2008 16:31:26 +0000
parents
children aee6ea2b39ee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25603
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
1
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
2 #ifndef GUI_COMMON_H
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
3 #define GUI_COMMON_H
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
4
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
5 #include <stdlib.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
6 #include <stdio.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
7 #include <inttypes.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
8 #include <sys/stat.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
9 #include <unistd.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
10
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
11 #include "app.h"
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
12 #include "bitmap.h"
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
13 #include "wm/ws.h"
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
14
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
15 extern inline void TranslateFilename( int c,char * tmp );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
16 extern char * Translate( char * str );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
17 extern void PutImage( txSample * bf,int x,int y,int max,int ofs );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
18 extern void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
19 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
20
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
21 #endif /* GUI_COMMON_H */