~ubuntu-branches/ubuntu/trusty/libxi/trusty-security

« back to all changes in this revision

Viewing changes to src/XDelDProp.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-03-16 15:27:45 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090316152745-n2fxsuea2vd70a1x
Tags: 2:1.2.1-2
Fix typo in debian/rules, which made us build with make -j if
DEB_BUILD_OPTIONS didn't ask for it.  Thanks to Samuel Thibault for
reporting the problem!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************
 
2
 
 
3
Copyright 2008 Peter Hutterer
 
4
 
 
5
Permission to use, copy, modify, distribute, and sell this software and its
 
6
documentation for any purpose is hereby granted without fee, provided that
 
7
the above copyright notice appear in all copies and that both that
 
8
copyright notice and this permission notice appear in supporting
 
9
documentation.
 
10
 
 
11
The above copyright notice and this permission notice shall be included in
 
12
all copies or substantial portions of the Software.
 
13
 
 
14
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
17
AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
 
18
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
19
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
20
 
 
21
Except as contained in this notice, the name of the author shall not be
 
22
used in advertising or otherwise to promote the sale, use or other dealings
 
23
in this Software without prior written authorization from the author.
 
24
 
 
25
*/
 
26
 
 
27
/***********************************************************************
 
28
 * XDeleteDeviceProperties - delete an input device's properties.
 
29
 *
 
30
 */
 
31
 
 
32
#ifdef HAVE_CONFIG_H
 
33
#include <config.h>
 
34
#endif
 
35
 
 
36
#include <X11/Xlibint.h>
 
37
#include <X11/extensions/XI.h>
 
38
#include <X11/extensions/XIproto.h>
 
39
#include <X11/extensions/XInput.h>
 
40
#include <X11/extensions/extutil.h>
 
41
#include "XIint.h"
 
42
 
 
43
void
 
44
XDeleteDeviceProperty(Display* dpy, XDevice* dev, Atom property)
 
45
{
 
46
    xDeleteDevicePropertyReq   *req;
 
47
 
 
48
    XExtDisplayInfo *info = XInput_find_display(dpy);
 
49
 
 
50
    LockDisplay(dpy);
 
51
    if (_XiCheckExtInit(dpy, XInput_Initial_Release, info) == -1)
 
52
        return;
 
53
 
 
54
    GetReq(DeleteDeviceProperty, req);
 
55
    req->reqType    = info->codes->major_opcode;
 
56
    req->ReqType    = X_DeleteDeviceProperty;
 
57
    req->deviceid   = dev->device_id;
 
58
    req->property   = property;
 
59
 
 
60
    UnlockDisplay(dpy);
 
61
    SyncHandle();
 
62
    return;
 
63
}
 
64