midbe.h revision 4c221b0da1816acf2ca302b10092df059484468d
222N/A/******************************************************************************
98N/A * Copyright (c) 1994, 1995 Hewlett-Packard Company
810N/A *
810N/A * Permission is hereby granted, free of charge, to any person obtaining
98N/A * a copy of this software and associated documentation files (the
98N/A * "Software"), to deal in the Software without restriction, including
98N/A * without limitation the rights to use, copy, modify, merge, publish,
98N/A * distribute, sublicense, and/or sell copies of the Software, and to
98N/A * permit persons to whom the Software is furnished to do so, subject to
98N/A * the following conditions:
98N/A *
98N/A * The above copyright notice and this permission notice shall be included
98N/A * in all copies or substantial portions of the Software.
98N/A *
98N/A * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
98N/A * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
98N/A * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
98N/A * IN NO EVENT SHALL HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM,
98N/A * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
98N/A * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
98N/A * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98N/A *
98N/A * Except as contained in this notice, the name of the Hewlett-Packard
98N/A * Company shall not be used in advertising or otherwise to promote the
98N/A * sale, use or other dealings in this Software without prior written
98N/A * authorization from the Hewlett-Packard Company.
98N/A *
98N/A * Header file for users of machine-independent DBE code
98N/A *
98N/A *****************************************************************************/
810N/A
98N/A#ifdef HAVE_DIX_CONFIG_H
98N/A#include <dix-config.h>
98N/A#endif
810N/A
810N/A#ifndef MIDBE_H
810N/A#define MIDBE_H
810N/A
810N/A#include "privates.h"
561N/A
561N/A/* EXTERNS */
810N/A
306N/Aextern Bool miDbeInit(
222N/A ScreenPtr pScreen,
306N/A DbeScreenPrivPtr pDbeScreenPriv
653N/A);
372N/A
561N/Aextern DevPrivateKeyRec dbeScreenPrivKeyRec;
561N/A#define dbeScreenPrivKey (&dbeScreenPrivKeyRec)
561N/A
561N/Aextern DevPrivateKeyRec dbeWindowPrivKeyRec;
306N/A#define dbeWindowPrivKey (&dbeWindowPrivKeyRec)
561N/A
561N/Aextern RESTYPE dbeDrawableResType;
561N/Aextern RESTYPE dbeWindowPrivResType;
561N/A
561N/A#endif /* MIDBE_H */
561N/A
561N/A