f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * misprite.h
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * software-sprite/sprite drawing interface spec
f78b12e570284aa8291f4ca1add24937fd107403vboxsync *
f78b12e570284aa8291f4ca1add24937fd107403vboxsync * mi versions of these routines exist.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync */
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsync/*
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncCopyright 1989, 1998 The Open Group
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncPermission to use, copy, modify, distribute, and sell this software and its
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncdocumentation for any purpose is hereby granted without fee, provided that
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncthe above copyright notice appear in all copies and that both that
f78b12e570284aa8291f4ca1add24937fd107403vboxsynccopyright notice and this permission notice appear in supporting
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncdocumentation.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncThe above copyright notice and this permission notice shall be included in
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncall copies or substantial portions of the Software.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncExcept as contained in this notice, the name of The Open Group shall not be
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncused in advertising or otherwise to promote the sale, use or other dealings
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncin this Software without prior written authorization from The Open Group.
f78b12e570284aa8291f4ca1add24937fd107403vboxsync*/
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miSpriteInitialize(
f78b12e570284aa8291f4ca1add24937fd107403vboxsync ScreenPtr /*pScreen*/,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync miPointerScreenFuncPtr /*screenFuncs*/
f78b12e570284aa8291f4ca1add24937fd107403vboxsync);
f78b12e570284aa8291f4ca1add24937fd107403vboxsync
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCRealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCUnrealizeCursor(ScreenPtr pScreen, CursorPtr pCursor);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCPutUpCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync CursorPtr pCursor, int x, int y,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync unsigned long source, unsigned long mask);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCSaveUnderCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync int x, int y, int w, int h);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCRestoreUnderCursor(DeviceIntPtr pDev, ScreenPtr pScreen,
f78b12e570284aa8291f4ca1add24937fd107403vboxsync int x, int y, int w, int h);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern Bool miDCDeviceInitialize(DeviceIntPtr pDev, ScreenPtr pScreen);
f78b12e570284aa8291f4ca1add24937fd107403vboxsyncextern void miDCDeviceCleanup(DeviceIntPtr pDev, ScreenPtr pScreen);