105b261ecSmrg/* 205b261ecSmrg * Copyright © 2000 Keith Packard 305b261ecSmrg * 405b261ecSmrg * Permission to use, copy, modify, distribute, and sell this software and its 505b261ecSmrg * documentation for any purpose is hereby granted without fee, provided that 605b261ecSmrg * the above copyright notice appear in all copies and that both that 705b261ecSmrg * copyright notice and this permission notice appear in supporting 805b261ecSmrg * documentation, and that the name of Keith Packard not be used in 905b261ecSmrg * advertising or publicity pertaining to distribution of the software without 1005b261ecSmrg * specific, written prior permission. Keith Packard makes no 1105b261ecSmrg * representations about the suitability of this software for any purpose. It 1205b261ecSmrg * is provided "as is" without express or implied warranty. 1305b261ecSmrg * 1405b261ecSmrg * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 1505b261ecSmrg * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 1605b261ecSmrg * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR 1705b261ecSmrg * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 1805b261ecSmrg * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 1905b261ecSmrg * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 2005b261ecSmrg * PERFORMANCE OF THIS SOFTWARE. 2105b261ecSmrg */ 2205b261ecSmrg 2305b261ecSmrg#ifdef HAVE_XORG_CONFIG_H 2405b261ecSmrg#include <xorg-config.h> 2505b261ecSmrg#endif 2605b261ecSmrg 2705b261ecSmrg#include "xf86Module.h" 2805b261ecSmrg#include <X11/X.h> 2905b261ecSmrg#include "scrnintstr.h" 3005b261ecSmrg#include "windowstr.h" 3105b261ecSmrg#include <X11/fonts/font.h> 3205b261ecSmrg#include "dixfontstr.h" 3305b261ecSmrg#include <X11/fonts/fontstruct.h> 3405b261ecSmrg#include "mi.h" 3505b261ecSmrg#include "regionstr.h" 3605b261ecSmrg#include "globals.h" 3705b261ecSmrg#include "gcstruct.h" 3805b261ecSmrg#include "shadow.h" 3905b261ecSmrg 4035c4bbdfSmrgstatic XF86ModuleVersionInfo VersRec = { 4135c4bbdfSmrg "shadow", 4235c4bbdfSmrg MODULEVENDORSTRING, 4335c4bbdfSmrg MODINFOSTRING1, 4435c4bbdfSmrg MODINFOSTRING2, 4535c4bbdfSmrg XORG_VERSION_CURRENT, 4635c4bbdfSmrg 1, 1, 0, 4735c4bbdfSmrg ABI_CLASS_ANSIC, /* Only need the ansic layer */ 4835c4bbdfSmrg ABI_ANSIC_VERSION, 4935c4bbdfSmrg MOD_CLASS_NONE, 5035c4bbdfSmrg {0, 0, 0, 0} /* signature, to be patched into the file by a tool */ 5105b261ecSmrg}; 5205b261ecSmrg 5305b261ecSmrg_X_EXPORT XF86ModuleData shadowModuleData = { &VersRec, NULL, NULL }; 54