Mercurial > mplayer.hg
annotate Gui/mplayer/mplayer.h @ 14178:69d9d9ec86da
Sync with 1.823: Mention how to concatenate files with -vo yuv4mpeg and -fixed-vo.
+ back to my way of maintaining the date field (for now)
author | gpoirier |
---|---|
date | Fri, 17 Dec 2004 22:33:30 +0000 |
parents | 0a665389cf2b |
children |
rev | line source |
---|---|
1693 | 1 |
2 #ifndef __MYMPLAYERHANDLER | |
3 #define __MYMPLAYERHANDLER | |
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; | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
2940
diff
changeset
|
13 extern int mplMiddleMenu; |
1693 | 14 |
6218 | 15 extern void mplInit( void * disp ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
2940
diff
changeset
|
16 extern void mplEventHandling( int msg,float param ); |
1693 | 17 |
8058 | 18 extern void mplMainDraw( void ); |
19 extern void mplEventHandling( int msg,float param ); | |
20 extern void mplMainMouseHandle( int Button,int X,int Y,int RX,int RY ); | |
21 extern void mplMainKeyHandle( int KeyCode,int Type,int Key ); | |
22 extern void mplDandDHandler(int num,char** files); | |
23 | |
24 extern void mplSubDraw( void ); | |
25 extern void mplSubMouseHandle( int Button,int X,int Y,int RX,int RY ); | |
26 | |
27 extern void mplMenuInit( void ); | |
28 extern void mplHideMenu( int mx,int my,int w ); | |
29 extern void mplShowMenu( int mx,int my ); | |
30 extern void mplMenuMouseHandle( int X,int Y,int RX,int RY ); | |
31 | |
8973 | 32 extern void mplPBInit( void ); |
33 extern void mplPBShow( int x, int y ); | |
34 | |
1693 | 35 #endif |