xfreerdp-server: fix build without XFIXES

This commit is contained in:
Marc-André Moreau 2013-06-20 12:11:32 -04:00
parent 62fe554c6a
commit e166840a26
2 changed files with 4 additions and 2 deletions

View File

@ -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;
}

View File

@ -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();