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:
parent
32b3218fe6
commit
5eae9431a9
|
@ -773,15 +773,6 @@ extern _X_EXPORT void
|
|||
extern _X_EXPORT void
|
||||
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
|
||||
*/
|
||||
|
@ -823,23 +814,6 @@ extern _X_EXPORT int
|
|||
RRConfigureOutputProperty(RROutputPtr output, Atom property,
|
||||
Bool pending, Bool range, Bool immutable,
|
||||
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 */
|
||||
#define PRIME_SYNC_PROP "PRIME Synchronization"
|
||||
|
|
|
@ -32,4 +32,15 @@ int ProcRRDestroyMode(ClientPtr client);
|
|||
int ProcRRAddOutputMode(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 */
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "randr/randrstr_priv.h"
|
||||
#include "randr/rrdispatch_priv.h"
|
||||
|
||||
RESTYPE RROutputType;
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <X11/Xatom.h>
|
||||
|
||||
#include "dix/dix_priv.h"
|
||||
#include "randr/rrdispatch_priv.h"
|
||||
|
||||
#include "randrstr_priv.h"
|
||||
#include "propertyst.h"
|
||||
|
|
Loading…
Reference in New Issue