(submit/selection.h) dix: unexport selection functions
No driver needs them, so no reason to keep them exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
221803bcc9
commit
450b08c6f1
|
@ -68,12 +68,12 @@ typedef struct _Selection {
|
||||||
* Selection API
|
* Selection API
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern _X_EXPORT int dixLookupSelection(Selection ** result, Atom name,
|
int dixLookupSelection(Selection ** result, Atom name,
|
||||||
ClientPtr client, Mask access_mode);
|
ClientPtr client, Mask access_mode);
|
||||||
|
|
||||||
extern _X_EXPORT Selection *CurrentSelections;
|
extern Selection *CurrentSelections;
|
||||||
|
|
||||||
extern _X_EXPORT CallbackListPtr SelectionCallback;
|
extern CallbackListPtr SelectionCallback;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SelectionSetOwner,
|
SelectionSetOwner,
|
||||||
|
@ -91,10 +91,8 @@ typedef struct {
|
||||||
* Selection server internals
|
* Selection server internals
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern _X_EXPORT void InitSelections(void);
|
void InitSelections(void);
|
||||||
|
void DeleteWindowFromAnySelections(WindowPtr pWin);
|
||||||
extern _X_EXPORT void DeleteWindowFromAnySelections(WindowPtr pWin);
|
void DeleteClientFromAnySelections(ClientPtr client);
|
||||||
|
|
||||||
extern _X_EXPORT void DeleteClientFromAnySelections(ClientPtr client);
|
|
||||||
|
|
||||||
#endif /* SELECTION_H */
|
#endif /* SELECTION_H */
|
||||||
|
|
Loading…
Reference in New Issue