Mercurial > mplayer.hg
annotate gui/mplayer/gmplayer.h @ 23926:ec8ca7b30d0f
Teletext support for V4Lv1
author | voroshil |
---|---|
date | Mon, 30 Jul 2007 18:00:11 +0000 |
parents | 1cb14b091f46 |
children | 3baf6a2283da |
rev | line source |
---|---|
23077 | 1 |
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
2 #ifndef GUI_GMPLAYER_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
3 #define GUI_GMPLAYER_H |
23077 | 4 |
5 extern int mplSubRender; | |
6 extern int mplMainRender; | |
7 | |
8 extern unsigned char * mplDrawBuffer; | |
9 extern unsigned char * mplMenuDrawBuffer; | |
10 extern int mainVisible; | |
11 | |
12 extern int mplMainAutoPlay; | |
13 extern int mplMiddleMenu; | |
14 | |
15 extern void mplInit( void * disp ); | |
16 | |
17 extern void mplMainDraw( void ); | |
18 extern void mplEventHandling( int msg,float param ); | |
19 extern void mplMainMouseHandle( int Button,int X,int Y,int RX,int RY ); | |
20 extern void mplMainKeyHandle( int KeyCode,int Type,int Key ); | |
21 extern void mplDandDHandler(int num,char** files); | |
22 | |
23 extern void mplSubDraw( void ); | |
24 extern void mplSubMouseHandle( int Button,int X,int Y,int RX,int RY ); | |
25 | |
26 extern void mplMenuInit( void ); | |
27 extern void mplHideMenu( int mx,int my,int w ); | |
28 extern void mplShowMenu( int mx,int my ); | |
29 extern void mplMenuMouseHandle( int X,int Y,int RX,int RY ); | |
30 | |
31 extern void mplPBInit( void ); | |
32 extern void mplPBShow( int x, int y ); | |
33 | |
34 #endif |