1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-11 17:37:23 +00:00

Fix erroneus extern declarations, fix wrong signedness of some vars

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13829 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2004-10-31 18:01:14 +00:00
parent a2f47e9648
commit 8aa920c937

View File

@ -165,7 +165,7 @@ void vo_hidecursor(Display * disp, Window win)
Pixmap bm_no;
XColor black, dummy;
Colormap colormap;
static unsigned char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
static char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
if (WinID == 0)
return; // do not hide, if we're playing at rootwin
@ -851,8 +851,6 @@ typedef struct
long state;
} MotifWmHints;
extern MotifWmHints vo_MotifWmHints;
extern Atom vo_MotifHints;
extern int vo_depthonscreen;
extern int vo_screenwidth;
extern int vo_screenheight;
@ -1777,8 +1775,8 @@ void vo_x11_xinerama_move(Display * dsp, Window w)
void vo_vm_switch(uint32_t X, uint32_t Y, int *modeline_width,
int *modeline_height)
{
unsigned int vm_event, vm_error;
unsigned int vm_ver, vm_rev;
int vm_event, vm_error;
int vm_ver, vm_rev;
int i, j, have_vm = 0;
int modecount;