Xi: Adding ChangeDeviceCursor request

This commit is contained in:
Peter Hutterer 2007-01-08 12:31:18 +10:30 committed by Peter Hutterer
commit 95e1a88050
9 changed files with 456 additions and 5 deletions

View file

@ -74,6 +74,7 @@ SOFTWARE.
/* modules local to Xi */
#include "allowev.h"
#include "chdevcur.h"
#include "chgdctl.h"
#include "chgfctl.h"
#include "chgkbd.h"
@ -340,6 +341,8 @@ ProcIDispatch(register ClientPtr client)
return (ProcXQueryDevicePointer(client));
else if (stuff->data == X_WarpDevicePointer)
return (ProcXWarpDevicePointer(client));
else if (stuff->data == X_ChangeDeviceCursor)
return (ProcXChangeDeviceCursor(client));
else {
SendErrorToClient(client, IReqCode, stuff->data, 0, BadRequest);
}