Mercurial > mplayer.hg
annotate gui/mplayer/common.h @ 25593:96ce0ca753ff
/usr/lib/win32 --> /usr/local/lib/codecs
author | diego |
---|---|
date | Sun, 06 Jan 2008 12:22:56 +0000 |
parents | 3baf6a2283da |
children |
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 | |
25535
3baf6a2283da
Add explanatory comments to the #endif part of multiple inclusion guards.
diego
parents:
23689
diff
changeset
|
21 #endif /* GUI_COMMON_H */ |