Mercurial > mplayer.hg
annotate gui/mplayer/common.h @ 24323:ddd7774aa043
Allow XF86AudioLowerVolume/XF86AudioRaiseVolume keys to be handled by MPlayer.
patch by Michael Mauch, michael.mauch gmx de
author | diego |
---|---|
date | Wed, 05 Sep 2007 11:09:25 +0000 |
parents | 3f0d00abc073 |
children | 3baf6a2283da |
rev | line source |
---|---|
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
1 |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
2 #ifndef GUI_COMMON_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
3 #define GUI_COMMON_H |
23077 | 4 |
5 #include <stdlib.h> | |
6 #include <stdio.h> | |
7 #include <inttypes.h> | |
8 #include <sys/stat.h> | |
9 #include <unistd.h> | |
10 | |
11 #include "app.h" | |
12 #include "bitmap.h" | |
13 #include "wm/ws.h" | |
14 | |
15 extern inline void TranslateFilename( int c,char * tmp ); | |
16 extern char * Translate( char * str ); | |
17 extern void PutImage( txSample * bf,int x,int y,int max,int ofs ); | |
18 extern void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac ); | |
19 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size ); | |
20 | |
21 #endif |