randr: unexport output related request handlers

Those aren't used by any drivers and never should so, thus no need to
keep them exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-16 10:36:21 +02:00
parent 32b3218fe6
commit 5eae9431a9
4 changed files with 13 additions and 26 deletions

View File

@ -773,15 +773,6 @@ extern _X_EXPORT void
extern _X_EXPORT void extern _X_EXPORT void
RROutputDestroy(RROutputPtr output); RROutputDestroy(RROutputPtr output);
extern _X_EXPORT int
ProcRRGetOutputInfo(ClientPtr client);
extern _X_EXPORT int
ProcRRSetOutputPrimary(ClientPtr client);
extern _X_EXPORT int
ProcRRGetOutputPrimary(ClientPtr client);
/* /*
* Initialize output type * Initialize output type
*/ */
@ -823,23 +814,6 @@ extern _X_EXPORT int
RRConfigureOutputProperty(RROutputPtr output, Atom property, RRConfigureOutputProperty(RROutputPtr output, Atom property,
Bool pending, Bool range, Bool immutable, Bool pending, Bool range, Bool immutable,
int num_values, const INT32 *values); int num_values, const INT32 *values);
extern _X_EXPORT int
ProcRRChangeOutputProperty(ClientPtr client);
extern _X_EXPORT int
ProcRRGetOutputProperty(ClientPtr client);
extern _X_EXPORT int
ProcRRListOutputProperties(ClientPtr client);
extern _X_EXPORT int
ProcRRQueryOutputProperty(ClientPtr client);
extern _X_EXPORT int
ProcRRConfigureOutputProperty(ClientPtr client);
extern _X_EXPORT int
ProcRRDeleteOutputProperty(ClientPtr client);
/* rrprovider.c */ /* rrprovider.c */
#define PRIME_SYNC_PROP "PRIME Synchronization" #define PRIME_SYNC_PROP "PRIME Synchronization"

View File

@ -32,4 +32,15 @@ int ProcRRDestroyMode(ClientPtr client);
int ProcRRAddOutputMode(ClientPtr client); int ProcRRAddOutputMode(ClientPtr client);
int ProcRRDeleteOutputMode(ClientPtr client); int ProcRRDeleteOutputMode(ClientPtr client);
/* output related dispatch */
int ProcRRGetOutputInfo(ClientPtr client);
int ProcRRSetOutputPrimary(ClientPtr client);
int ProcRRGetOutputPrimary(ClientPtr client);
int ProcRRChangeOutputProperty(ClientPtr client);
int ProcRRGetOutputProperty(ClientPtr client);
int ProcRRListOutputProperties(ClientPtr client);
int ProcRRQueryOutputProperty(ClientPtr client);
int ProcRRConfigureOutputProperty(ClientPtr client);
int ProcRRDeleteOutputProperty(ClientPtr client);
#endif /* _XSERVER_RANDR_RRDISPATCH_H */ #endif /* _XSERVER_RANDR_RRDISPATCH_H */

View File

@ -26,6 +26,7 @@
#include "dix/dix_priv.h" #include "dix/dix_priv.h"
#include "randr/randrstr_priv.h" #include "randr/randrstr_priv.h"
#include "randr/rrdispatch_priv.h"
RESTYPE RROutputType; RESTYPE RROutputType;

View File

@ -24,6 +24,7 @@
#include <X11/Xatom.h> #include <X11/Xatom.h>
#include "dix/dix_priv.h" #include "dix/dix_priv.h"
#include "randr/rrdispatch_priv.h"
#include "randrstr_priv.h" #include "randrstr_priv.h"
#include "propertyst.h" #include "propertyst.h"