Mercurial > mplayer.hg
annotate gui/mplayer/gmplayer.h @ 25686:4c1e768cdbe4
Add type to extern declaration
author | reimar |
---|---|
date | Sun, 13 Jan 2008 11:53:35 +0000 |
parents | 3baf6a2283da |
children | 4129c8cfa742 |
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 | |
25535
3baf6a2283da
Add explanatory comments to the #endif part of multiple inclusion guards.
diego
parents:
23795
diff
changeset
|
34 #endif /* GUI_GMPLAYER_H */ |