xserver-multidpi/include/dixevents.h
Paulo Cesar Pereira de Andrade 49f77fff14 Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.

  This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)

  LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.

  xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00

92 lines
3.2 KiB
C

/************************************************************
Copyright 1996 by Thomas E. Dickey <dickey@clark.net>
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of the above listed
copyright holder(s) not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior
permission.
THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
********************************************************/
#ifndef DIXEVENTS_H
#define DIXEVENTS_H
extern _X_EXPORT void SetCriticalEvent(int /* event */);
extern _X_EXPORT CursorPtr GetSpriteCursor(DeviceIntPtr /*pDev*/);
extern _X_EXPORT int ProcAllowEvents(ClientPtr /* client */);
extern _X_EXPORT int MaybeDeliverEventsToClient(
WindowPtr /* pWin */,
xEvent * /* pEvents */,
int /* count */,
Mask /* filter */,
ClientPtr /* dontClient */);
extern _X_EXPORT int ProcWarpPointer(ClientPtr /* client */);
extern _X_EXPORT int EventSelectForWindow(
WindowPtr /* pWin */,
ClientPtr /* client */,
Mask /* mask */);
extern _X_EXPORT int EventSuppressForWindow(
WindowPtr /* pWin */,
ClientPtr /* client */,
Mask /* mask */,
Bool * /* checkOptional */);
extern _X_EXPORT int ProcSetInputFocus(ClientPtr /* client */);
extern _X_EXPORT int ProcGetInputFocus(ClientPtr /* client */);
extern _X_EXPORT int ProcGrabPointer(ClientPtr /* client */);
extern _X_EXPORT int ProcChangeActivePointerGrab(ClientPtr /* client */);
extern _X_EXPORT int ProcUngrabPointer(ClientPtr /* client */);
extern _X_EXPORT int ProcGrabKeyboard(ClientPtr /* client */);
extern _X_EXPORT int ProcUngrabKeyboard(ClientPtr /* client */);
extern _X_EXPORT int ProcQueryPointer(ClientPtr /* client */);
extern _X_EXPORT int ProcSendEvent(ClientPtr /* client */);
extern _X_EXPORT int ProcUngrabKey(ClientPtr /* client */);
extern _X_EXPORT int ProcGrabKey(ClientPtr /* client */);
extern _X_EXPORT int ProcGrabButton(ClientPtr /* client */);
extern _X_EXPORT int ProcUngrabButton(ClientPtr /* client */);
extern _X_EXPORT int ProcRecolorCursor(ClientPtr /* client */);
#ifdef PANORAMIX
extern _X_EXPORT void PostSyntheticMotion(DeviceIntPtr pDev,
int x,
int y,
int screen,
unsigned long time);
#endif
#endif /* DIXEVENTS_H */