Mercurial > mplayer.hg
annotate libvo/x11_common.h @ 1155:be5942e385e5
original and CE version of mpfc
author | arpi_esp |
---|---|
date | Sun, 17 Jun 2001 23:58:38 +0000 |
parents | 4c7b219e126c |
children | 5e4214a7540e |
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 ); |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
922
diff
changeset
|
19 void vo_x11_classhint( Display * display,Window window,char *name ); |
32 | 20 int vo_x11_check_events(Display *mydisplay); |
21 #endif | |
22 | |
723 | 23 #ifdef HAVE_GUI |
24 extern Window vo_window; | |
25 extern Display * vo_display; | |
26 extern GC vo_gc; | |
27 extern int vo_xeventhandling; | |
28 extern int vo_expose; | |
29 extern int vo_resize; | |
30 | |
31 extern void vo_setwindow( Window w,GC g ); | |
32 #endif | |
33 | |
324 | 34 void saver_off( Display * ); |
35 void saver_on( Display * ); |