annotate Gui/mplayer/common.h @ 12043:8d45dcfc016f
Fixed a bug that was accidentally introduced by the addition of MPEG Transport
Stream support. We now handle errors such as 'stream not found' correctly once
again.
author |
rsf |
date |
Fri, 19 Mar 2004 10:15:41 +0000 |
parents |
0a665389cf2b |
children |
eb996ecdfcd5 |
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 );
|
|
17 extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size );
|
|
18
|
|
19 #endif
|