f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Copyright 2002 Red Hat Inc., Durham, North Carolina.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * All Rights Reserved.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Permission is hereby granted, free of charge, to any person obtaining
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * a copy of this software and associated documentation files (the
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * "Software"), to deal in the Software without restriction, including
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * without limitation on the rights to use, copy, modify, merge,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * publish, distribute, sublicense, and/or sell copies of the Software,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * and to permit persons to whom the Software is furnished to do so,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * subject to the following conditions:
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * The above copyright notice and this permission notice (including the
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * next paragraph) shall be included in all copies or substantial
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * portions of the Software.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * SOFTWARE.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Authors:
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Rickard E. (Rik) Faith <faith@redhat.com>
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/** \file
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * Interface to backend input device support. \see dmxbackend.c \see
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * dmxcommon.c */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#ifndef _DMXBACKEND_H_
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#define _DMXBACKEND_H_
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern pointer dmxBackendCreatePrivate(DeviceIntPtr pDevice);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendDestroyPrivate(pointer private);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendInit(DevicePtr pDev);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendLateReInit(DevicePtr pDev);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendMouGetInfo(DevicePtr pDev, DMXLocalInitInfoPtr info);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendKbdGetInfo(DevicePtr pDev, DMXLocalInitInfoPtr info);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendCollectEvents(DevicePtr pDev,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync dmxMotionProcPtr motion,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync dmxEnqueueProcPtr enqueue,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync dmxCheckSpecialProcPtr checkspecial,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync DMXBlockType block);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendProcessInput(pointer private);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern int dmxBackendFunctions(pointer private, DMXFunctionType function);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void dmxBackendUpdatePosition(pointer private, int x, int y);
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync#endif