mirror of https://github.com/FreeRDP/FreeRDP
X11 XEvent disp refactored to use const arguments
This commit is contained in:
parent
b48967d559
commit
f32a46370c
|
@ -348,7 +348,7 @@ UINT xf_disp_sendLayout(DispClientContext* disp, rdpMonitor* monitors, int nmoni
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL xf_disp_handle_xevent(xfContext* xfc, XEvent* event)
|
||||
BOOL xf_disp_handle_xevent(xfContext* xfc, const XEvent* event)
|
||||
{
|
||||
xfDispContext* xfDisp;
|
||||
rdpSettings* settings;
|
||||
|
|
|
@ -30,7 +30,7 @@ FREERDP_API BOOL xf_disp_uninit(xfDispContext* xfDisp, DispClientContext* disp);
|
|||
|
||||
xfDispContext* xf_disp_new(xfContext* xfc);
|
||||
void xf_disp_free(xfDispContext* disp);
|
||||
BOOL xf_disp_handle_xevent(xfContext* xfc, XEvent* event);
|
||||
BOOL xf_disp_handle_xevent(xfContext* xfc, const XEvent* event);
|
||||
BOOL xf_disp_handle_configureNotify(xfContext* xfc, int width, int height);
|
||||
void xf_disp_resized(xfDispContext* disp);
|
||||
|
||||
|
|
Loading…
Reference in New Issue