26 lines
		
	
	
		
			693 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			693 B
		
	
	
	
		
			C
		
	
	
	
/* SPDX-License-Identifier: MIT OR X11
 | 
						|
 *
 | 
						|
 * Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
 | 
						|
 */
 | 
						|
#ifndef _XSERVER__XF86XINPUT_H
 | 
						|
#define _XSERVER__XF86XINPUT_H
 | 
						|
 | 
						|
#include "xf86Xinput.h"
 | 
						|
 | 
						|
extern InputInfoPtr xf86InputDevs;
 | 
						|
 | 
						|
int xf86NewInputDevice(InputInfoPtr pInfo, DeviceIntPtr *pdev, BOOL is_auto);
 | 
						|
InputInfoPtr xf86AllocateInput(void);
 | 
						|
 | 
						|
void xf86InputEnableVTProbe(void);
 | 
						|
 | 
						|
InputDriverPtr xf86LookupInputDriver(const char *name);
 | 
						|
 | 
						|
InputInfoPtr xf86LookupInput(const char *name);
 | 
						|
 | 
						|
void xf86AddInputEventDrainCallback(CallbackProcPtr callback, void *param);
 | 
						|
 | 
						|
void xf86RemoveInputEventDrainCallback(CallbackProcPtr callback, void *param);
 | 
						|
 | 
						|
#endif /* _XSERVER__XF86XINPUT_H */
 |