dix: unexport Ones()
It's not used by any module/driver, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1695>
This commit is contained in:
parent
91b5a003a5
commit
1642adec3b
|
@ -32,6 +32,7 @@ Equipment Corporation.
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "windowstr.h"
|
||||
#include "dixfontstr.h"
|
||||
|
|
|
@ -36,6 +36,7 @@ in this Software without prior written authorization from the X Consortium.
|
|||
#include "dix/colormap_priv.h"
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "os/screensaver.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
@ -62,6 +63,10 @@ in this Software without prior written authorization from the X Consortium.
|
|||
#include "protocol-versions.h"
|
||||
#include "extinit_priv.h"
|
||||
|
||||
// temporary workaround for win32/mingw32 name clash
|
||||
// see: https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1355
|
||||
#undef CreateWindow
|
||||
|
||||
static int ScreenSaverEventBase = 0;
|
||||
|
||||
static Bool ScreenSaverHandle(ScreenPtr pScreen, int xstate, Bool force);
|
||||
|
|
|
@ -35,6 +35,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "include/extinit_priv.h"
|
||||
#include "os/audit.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "inputstr.h"
|
||||
|
|
|
@ -59,6 +59,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
#include <X11/extensions/syncproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "os.h"
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#include <dix-config.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "compint.h"
|
||||
#include "compositeext.h"
|
||||
|
|
|
@ -60,6 +60,7 @@ SOFTWARE.
|
|||
#include "dix/exevents_priv.h"
|
||||
#include "dix/input_priv.h"
|
||||
#include "dix/ptrveloc_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "xkb/xkbsrv_priv.h"
|
||||
|
||||
#include "misc.h"
|
||||
|
|
1
dix/gc.c
1
dix/gc.c
|
@ -52,6 +52,7 @@ SOFTWARE.
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/gc_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "resource.h"
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "fb.h"
|
||||
|
||||
Bool
|
||||
|
|
|
@ -390,8 +390,6 @@ extern _X_EXPORT void SwapShorts(short *list, unsigned long count);
|
|||
|
||||
extern _X_EXPORT void MakePredeclaredAtoms(void);
|
||||
|
||||
extern _X_EXPORT int Ones(unsigned long /*mask */ );
|
||||
|
||||
typedef struct _xPoint *DDXPointPtr;
|
||||
typedef struct pixman_box16 *BoxPtr;
|
||||
typedef struct _xEvent *xEventPtr;
|
||||
|
|
|
@ -215,4 +215,6 @@ extern Bool CoreDump;
|
|||
extern Bool NoListenAll;
|
||||
extern Bool AllowByteSwappedClients;
|
||||
|
||||
int Ones(unsigned long mask);
|
||||
|
||||
#endif /* _OSDEP_H_ */
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
#include "gcstruct.h"
|
||||
#include "pixmapstr.h"
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <dix-config.h>
|
||||
|
||||
#include "dix/colormap_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "scrnintstr.h"
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
|
||||
#include "dix/cursor_priv.h"
|
||||
#include "dix/dix_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h"
|
||||
#include "os.h"
|
||||
|
|
Loading…
Reference in New Issue