randr: unexport and document RRGetOutputProperty()
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
d3e1cc205c
commit
81df43802b
|
@ -648,9 +648,6 @@ extern _X_EXPORT Bool
|
|||
extern _X_EXPORT void
|
||||
RROutputDestroy(RROutputPtr output);
|
||||
|
||||
extern _X_EXPORT RRPropertyValuePtr
|
||||
RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
|
||||
|
||||
extern _X_EXPORT RRPropertyPtr
|
||||
RRQueryOutputProperty(RROutputPtr output, Atom property);
|
||||
|
||||
|
|
|
@ -377,6 +377,16 @@ void RROutputInitErrorValue(void);
|
|||
*/
|
||||
void RRPointerScreenConfigured(ScreenPtr pScreen);
|
||||
|
||||
/*
|
||||
* Retrieve output property value
|
||||
*
|
||||
* @param output the output to query
|
||||
* @param property Atom ID of the property to retrieve
|
||||
* @param pending retrieve pending instead of current value
|
||||
* @return pointer to property value or NULL (if not found)
|
||||
*/
|
||||
RRPropertyValuePtr RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
|
||||
|
||||
/*
|
||||
* Delete all properties on given output
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue