diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-05-07 10:05:29 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-05-08 14:33:23 +1000 |
commit | 83f32d3972b8bfb0a87069dfb3fcd64b6b7c6424 (patch) | |
tree | 2d4181068f89117c608b047ec7a4c7346355ea97 /Xi/xiproperty.h | |
parent | 9935bec6e860cba9a3cc5baadd372ddb89d72ef0 (diff) |
Xi: Add XI2 property requests.
Diffstat (limited to 'Xi/xiproperty.h')
-rw-r--r-- | Xi/xiproperty.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Xi/xiproperty.h b/Xi/xiproperty.h index e66b447ea..bc4bbaed9 100644 --- a/Xi/xiproperty.h +++ b/Xi/xiproperty.h @@ -43,4 +43,19 @@ void SRepXListDeviceProperties(ClientPtr client, int size, void SRepXGetDeviceProperty(ClientPtr client, int size, xGetDevicePropertyReply *rep); +/* XI2 request/reply handling */ +int ProcXIListProperties (ClientPtr client); +int ProcXIChangeProperty (ClientPtr client); +int ProcXIDeleteProperty (ClientPtr client); +int ProcXIGetProperty (ClientPtr client); + +int SProcXIListProperties (ClientPtr client); +int SProcXIChangeProperty (ClientPtr client); +int SProcXIDeleteProperty (ClientPtr client); +int SProcXIGetProperty (ClientPtr client); + +void SRepXIListProperties(ClientPtr client, int size, + xXIListPropertiesReply *rep); +void SRepXIGetProperty(ClientPtr client, int size, + xXIGetPropertyReply *rep); #endif /* XIPROPERTY_H */ |