randr: unexport and document RRQueryOutputProperty()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
81df43802b
commit
5998871151
|
@ -648,9 +648,6 @@ extern _X_EXPORT Bool
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
RROutputDestroy(RROutputPtr output);
|
RROutputDestroy(RROutputPtr output);
|
||||||
|
|
||||||
extern _X_EXPORT RRPropertyPtr
|
|
||||||
RRQueryOutputProperty(RROutputPtr output, Atom property);
|
|
||||||
|
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
RRDeleteOutputProperty(RROutputPtr output, Atom property);
|
RRDeleteOutputProperty(RROutputPtr output, Atom property);
|
||||||
|
|
||||||
|
|
|
@ -387,6 +387,15 @@ void RRPointerScreenConfigured(ScreenPtr pScreen);
|
||||||
*/
|
*/
|
||||||
RRPropertyValuePtr RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
|
RRPropertyValuePtr RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Retrieve full property structure from output
|
||||||
|
*
|
||||||
|
* @param output the output to query
|
||||||
|
* @param property Atom ID of the property to query
|
||||||
|
* @return pointer to property structure, or NULL if not found
|
||||||
|
*/
|
||||||
|
RRPropertyPtr RRQueryOutputProperty(RROutputPtr output, Atom property);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Delete all properties on given output
|
* Delete all properties on given output
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue