mirror of https://github.com/FreeRDP/FreeRDP
xfreerdp-server: fix build without XFIXES
This commit is contained in:
parent
62fe554c6a
commit
e166840a26
|
@ -38,6 +38,7 @@
|
|||
|
||||
int xf_cursor_init(xfInfo* xfi)
|
||||
{
|
||||
#ifdef WITH_XFIXES
|
||||
int event;
|
||||
int error;
|
||||
|
||||
|
@ -50,6 +51,6 @@ int xf_cursor_init(xfInfo* xfi)
|
|||
xfi->xfixes_notify_event = event + XFixesCursorNotify;
|
||||
|
||||
XFixesSelectCursorInput(xfi->display, DefaultRootWindow(xfi->display), XFixesDisplayCursorNotifyMask);
|
||||
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -80,12 +80,13 @@ void* xf_update_thread(void* param)
|
|||
ResetEvent(xfp->updateSentEvent);
|
||||
}
|
||||
}
|
||||
#ifdef WITH_XFIXES
|
||||
else if (xevent.type == xfi->xfixes_notify_event)
|
||||
{
|
||||
XFixesCursorImage* ci = XFixesGetCursorImage(xfi->display);
|
||||
|
||||
XFree(ci);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
end = GetTickCount();
|
||||
|
|
Loading…
Reference in New Issue