mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 *  \defgroup Global Global defines
 | 
						|
 *  Global defines
 | 
						|
 *  \{
 | 
						|
 */
 | 
						|
 | 
						|
#ifdef SNDRV_LITTLE_ENDIAN
 | 
						|
#define SND_LITTLE_ENDIAN SNDRV_LITTLE_ENDIAN
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef SNDRV_BIG_ENDIAN
 | 
						|
#define SND_BIG_ENDIAN SNDRV_BIG_ENDIAN
 | 
						|
#endif
 | 
						|
 | 
						|
#define snd_enum_to_int(v) (v)
 | 
						|
#define snd_int_to_enum(v) (v)
 | 
						|
#define snd_enum_incr(v) (++(v))
 | 
						|
 | 
						|
/** \} */
 | 
						|
 |