annotate gui/mplayer/gui_common.h @ 26011:aee6ea2b39ee

Consistently use filename as multiple inclusion guard.
author diego
date Thu, 21 Feb 2008 00:10:33 +0000
parents 01754b23193e
children 4129c8cfa742
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
26011
aee6ea2b39ee Consistently use filename as multiple inclusion guard.
diego
parents: 25603
diff changeset
2 #ifndef GUI_GUI_COMMON_H
aee6ea2b39ee Consistently use filename as multiple inclusion guard.
diego
parents: 25603
diff changeset
3 #define GUI_GUI_COMMON_H
25603
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
26011
aee6ea2b39ee Consistently use filename as multiple inclusion guard.
diego
parents: 25603
diff changeset
21 #endif /* GUI_GUI_COMMON_H */