mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-18 19:52:21 +00:00
Xi: Adding ChangeDeviceCursor request
This commit is contained in:
parent
9fd2f167ec
commit
95e1a88050
9 changed files with 456 additions and 5 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue