annotate gui/mplayer/gui_common.h @ 26365:10dfbc523184

Add gui/ prefix to some #include paths so that compilation from the top-level source directory does not fail.
author diego
date Fri, 11 Apr 2008 16:55:27 +0000
parents 4129c8cfa742
children b0a7b35b78d2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
1 #ifndef MPLAYER_GUI_GUI_COMMON_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
2 #define MPLAYER_GUI_GUI_COMMON_H
25603
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
3
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
4 #include <stdlib.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
5 #include <stdio.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
6 #include <inttypes.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
7 #include <sys/stat.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
8 #include <unistd.h>
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
9
26365
10dfbc523184 Add gui/ prefix to some #include paths so that compilation from the
diego
parents: 26029
diff changeset
10 #include "gui/app.h"
10dfbc523184 Add gui/ prefix to some #include paths so that compilation from the
diego
parents: 26029
diff changeset
11 #include "gui/bitmap.h"
10dfbc523184 Add gui/ prefix to some #include paths so that compilation from the
diego
parents: 26029
diff changeset
12 #include "gui/wm/ws.h"
25603
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
13
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
14 extern inline void TranslateFilename( int c,char * tmp );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
15 extern char * Translate( char * str );
01754b23193e Rename common.[ch], there are too many files by that name.
diego
parents:
diff changeset
16 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
17 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
18 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
19
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26011
diff changeset
20 #endif /* MPLAYER_GUI_GUI_COMMON_H */