annotate Gui/mplayer/common.h @ 12431:663fdd72e594
Encrypted dvd playback now accepts -dvd-drive e: on mingw. fix from libdvdread, left out the various cosmetics changes for now
author |
faust3 |
date |
Thu, 06 May 2004 18:04:06 +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
|