rdesktop/tests/xclip_mock.c
Cendio d10df452ee Ensure (partial) resize functionality with automated tests
This test suite was built with cgreen, and has various tests that
tries to ensure that we didn't break something while developing the
dynamic resize feature.

Signed-off-by: Henrik Andersson <hean01@cendio.com>
Signed-off-by: Karl Mikaelsson <derfian@cendio.se>
Signed-off-by: Thomas Nilefalk <thoni56@cendio.se>
2017-12-07 11:15:03 +01:00

38 lines
436 B
C

#include <cgreen/mocks.h>
#include "../rdesktop.h"
#include <X11/Xlib.h>
void xclip_init()
{
mock();
}
void xclip_deinit()
{
mock();
}
void
xclip_handle_SelectionNotify(XSelectionEvent * event)
{
mock(event);
}
void
xclip_handle_SelectionRequest(XSelectionRequestEvent * xevent)
{
mock(xevent);
}
void
xclip_handle_SelectionClear(void)
{
mock();
}
void
xclip_handle_PropertyNotify(XPropertyEvent * xev)
{
mock(xev);
}