Xi: unexport AssignTypeAndName()
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
							
								
									5c0cbd0f92
								
							
						
					
					
						commit
						b04aeed760
					
				|  | @ -61,6 +61,7 @@ SOFTWARE. | ||||||
| #include <X11/extensions/geproto.h> | #include <X11/extensions/geproto.h> | ||||||
| 
 | 
 | ||||||
| #include "dix/dix_priv.h" | #include "dix/dix_priv.h" | ||||||
|  | #include "dix/input_priv.h" | ||||||
| #include "dix/exevents_priv.h" | #include "dix/exevents_priv.h" | ||||||
| #include "dix/extension_priv.h" | #include "dix/extension_priv.h" | ||||||
| #include "miext/extinit_priv.h" | #include "miext/extinit_priv.h" | ||||||
|  |  | ||||||
|  | @ -535,4 +535,6 @@ static inline int CountBits(const uint8_t * mask, int len) | ||||||
|     return ret; |     return ret; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | void AssignTypeAndName(DeviceIntPtr dev, Atom type, const char *name); | ||||||
|  | 
 | ||||||
| #endif /* _XSERVER_INPUT_PRIV_H */ | #endif /* _XSERVER_INPUT_PRIV_H */ | ||||||
|  |  | ||||||
|  | @ -33,6 +33,7 @@ from The Open Group. | ||||||
| #include <X11/Xos.h> | #include <X11/Xos.h> | ||||||
| #include <X11/keysym.h> | #include <X11/keysym.h> | ||||||
| 
 | 
 | ||||||
|  | #include "dix/input_priv.h" | ||||||
| #include "mi/mi_priv.h" | #include "mi/mi_priv.h" | ||||||
| 
 | 
 | ||||||
| #include "scrnintstr.h" | #include "scrnintstr.h" | ||||||
|  |  | ||||||
|  | @ -56,10 +56,6 @@ SOFTWARE. | ||||||
| #include "cursorstr.h" | #include "cursorstr.h" | ||||||
| #include "privates.h" | #include "privates.h" | ||||||
| 
 | 
 | ||||||
| extern _X_EXPORT void AssignTypeAndName(DeviceIntPtr dev, |  | ||||||
|                                         Atom type, |  | ||||||
|                                         const char *name); |  | ||||||
| 
 |  | ||||||
| #define BitIsOn(ptr, bit) (!!(((const BYTE *) (ptr))[(bit)>>3] & (1 << ((bit) & 7)))) | #define BitIsOn(ptr, bit) (!!(((const BYTE *) (ptr))[(bit)>>3] & (1 << ((bit) & 7)))) | ||||||
| #define SetBit(ptr, bit)  (((BYTE *) (ptr))[(bit)>>3] |= (1 << ((bit) & 7))) | #define SetBit(ptr, bit)  (((BYTE *) (ptr))[(bit)>>3] |= (1 << ((bit) & 7))) | ||||||
| #define ClearBit(ptr, bit) (((BYTE *)(ptr))[(bit)>>3] &= ~(1 << ((bit) & 7))) | #define ClearBit(ptr, bit) (((BYTE *)(ptr))[(bit)>>3] &= ~(1 << ((bit) & 7))) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue