Mercurial > mplayer.hg
annotate libvo/x11_common.h @ 973:c08282a937d3
Changed to only uninit SDL Video Subsystem.
author | atmosfear |
---|---|
date | Sun, 03 Jun 2001 21:02:46 +0000 |
parents | db06ae8967eb |
children | 4c7b219e126c |
rev | line source |
---|---|
32 | 1 |
2 #ifdef X11_FULLSCREEN | |
3 | |
4 extern int vo_depthonscreen; | |
5 extern int vo_screenwidth; | |
6 extern int vo_screenheight; | |
7 extern int vo_dwidth; | |
8 extern int vo_dheight; | |
9 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
10 extern char *mDisplayName; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
11 extern Display *mDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
12 extern Window *mRootWin; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
13 extern int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
14 extern int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
15 |
32 | 16 int vo_init( void ); |
384 | 17 int vo_hidecursor ( Display* , Window ); |
32 | 18 void vo_x11_decoration( Display * vo_Display,Window w,int d ); |
19 int vo_x11_check_events(Display *mydisplay); | |
20 #endif | |
21 | |
723 | 22 #ifdef HAVE_GUI |
23 extern Window vo_window; | |
24 extern Display * vo_display; | |
25 extern GC vo_gc; | |
26 extern int vo_xeventhandling; | |
27 extern int vo_expose; | |
28 extern int vo_resize; | |
29 | |
30 extern void vo_setwindow( Window w,GC g ); | |
31 #endif | |
32 | |
324 | 33 void saver_off( Display * ); |
34 void saver_on( Display * ); |