mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-11-04 04:51:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			367 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			367 B
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file hid_shim.h
 | 
						|
 * @brief Human Interface Devices Services (hid) IPC wrapper.
 | 
						|
 * @author SciresM
 | 
						|
 * @copyright libnx Authors
 | 
						|
 */
 | 
						|
#pragma once
 | 
						|
#include <switch.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
/* Command forwarders. */
 | 
						|
Result hidSetSupportedNpadStyleSetFwd(Service* s, u64 process_id, u64 aruid, HidControllerType type);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif |