summaryrefslogtreecommitdiffstats
path: root/libvo/x11_common.h
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-08 20:14:08 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-08 20:14:08 +0000
commit62f6b6fadac719f11f229e07d55c7dbd57abb114 (patch)
treec86287a996062ef78a572678c3e0594e2446f710 /libvo/x11_common.h
parent73719375cdabb11f3c38b29d7283e03df14286d2 (diff)
downloadmpv-62f6b6fadac719f11f229e07d55c7dbd57abb114.tar.bz2
mpv-62f6b6fadac719f11f229e07d55c7dbd57abb114.tar.xz
small changes in libvo's X11 support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4994 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/x11_common.h')
-rw-r--r--libvo/x11_common.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/libvo/x11_common.h b/libvo/x11_common.h
index 262bf3d6c6..a9687b08f6 100644
--- a/libvo/x11_common.h
+++ b/libvo/x11_common.h
@@ -4,6 +4,9 @@
#ifdef X11_FULLSCREEN
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+
extern int vo_depthonscreen;
extern int vo_screenwidth;
extern int vo_screenheight;
@@ -22,12 +25,14 @@ int vo_init( void );
int vo_hidecursor ( Display* , Window );
void vo_x11_decoration( Display * vo_Display,Window w,int d );
void vo_x11_classhint( Display * display,Window window,char *name );
+void vo_x11_sizehint( int x, int y, int width, int height );
int vo_x11_check_events(Display *mydisplay);
void vo_x11_fullscreen( void );
#endif
-extern Window vo_window;
-extern GC vo_gc;
+extern Window vo_window;
+extern GC vo_gc;
+extern XSizeHints vo_hint;
#ifdef HAVE_NEW_GUI
extern void vo_setwindow( Window w,GC g );