(submit/property.h) include: split out non-exported stuff from property.h
Reduce cluttering public interface with non-exported stuff, moving those things into a separate internal header. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
d25a4b4328
commit
f886f1578c
|
@ -52,6 +52,7 @@ SOFTWARE.
|
|||
#include <X11/Xproto.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "dix/property_priv.h"
|
||||
|
||||
#include "windowstr.h"
|
||||
#include "propertyst.h"
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
/* SPDX-License-Identifier: MIT OR X11
|
||||
*
|
||||
* Copyright © 1987, 1998 The Open Group
|
||||
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
||||
*/
|
||||
#ifndef _XSERVER_PROPERTY_PRIV_H
|
||||
#define _XSERVER_PROPERTY_PRIV_H
|
||||
|
||||
#include "window.h"
|
||||
#include "property.h"
|
||||
|
||||
typedef struct _PropertyStateRec {
|
||||
WindowPtr win;
|
||||
PropertyPtr prop;
|
||||
int state;
|
||||
} PropertyStateRec;
|
||||
|
||||
extern CallbackListPtr PropertyStateCallback;
|
||||
|
||||
#endif /* _XSERVER_PROPERTY_PRIV_H */
|
|
@ -37,6 +37,7 @@
|
|||
#include <X11/Xatom.h>
|
||||
#include <X11/Xfuncproto.h>
|
||||
|
||||
#include "dix/property_priv.h"
|
||||
#include "miext/extinit_priv.h"
|
||||
#include "os/osdep.h"
|
||||
#include "os/xserver_poll.h"
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include <X11/X.h>
|
||||
|
||||
#include "dix/property_priv.h"
|
||||
|
||||
#include <dix.h>
|
||||
#include <propertyst.h>
|
||||
#include <validate.h>
|
||||
|
|
|
@ -51,14 +51,6 @@ SOFTWARE.
|
|||
|
||||
typedef struct _Property *PropertyPtr;
|
||||
|
||||
typedef struct _PropertyStateRec {
|
||||
WindowPtr win;
|
||||
PropertyPtr prop;
|
||||
int state;
|
||||
} PropertyStateRec;
|
||||
|
||||
extern CallbackListPtr PropertyStateCallback;
|
||||
|
||||
extern _X_EXPORT int dixLookupProperty(PropertyPtr * /*result */ ,
|
||||
WindowPtr /*pWin */ ,
|
||||
Atom /*proprty */ ,
|
||||
|
|
Loading…
Reference in New Issue