Mercurial > mplayer.hg
annotate Gui/mplayer/common.h @ 15799:a8854519f3ff
fix fribidi 0.10.5 and greater support (patch by Amir Shalem < amir at boom.org.il >)
author | aurel |
---|---|
date | Wed, 22 Jun 2005 22:12:55 +0000 |
parents | eb996ecdfcd5 |
children | 0e1471d9da74 |
rev | line source |
---|---|
8973 | 1 #ifndef __COMMON_H |
2 #define __COMMON_H | |
3 | |
4 #include <stdlib.h> | |
5 #include <stdio.h> | |
6 #include <inttypes.h> | |
7 #include <sys/stat.h> | |
8 #include <unistd.h> | |
9 | |
10 #include "../app.h" | |
11 #include "../bitmap.h" | |
12 #include "../wm/ws.h" | |
13 | |
14 extern inline void TranslateFilename( int c,char * tmp ); | |
15 extern char * Translate( char * str ); | |
16 extern void PutImage( txSample * bf,int x,int y,int max,int ofs ); | |
12693
eb996ecdfcd5
simple, smooth, ram-saving dynamic potmeter, which feature is required by the tvisor skin, patch by Andre Kuhne
alex
parents:
8973
diff
changeset
|
17 extern void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac ); |
8973 | 18 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size ); |
19 | |
20 #endif |