(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:
Enrico Weigelt, metux IT consult 2024-02-28 11:48:46 +01:00
parent d25a4b4328
commit f886f1578c
5 changed files with 25 additions and 8 deletions

View File

@ -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"

20
dix/property_priv.h Normal file
View File

@ -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 */

View File

@ -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"

View File

@ -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>

View File

@ -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 */ ,