mirror of
				https://github.com/pion/mediadevices.git
				synced 2025-10-31 11:56:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			255 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			255 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package vnc
 | |
| 
 | |
| // ButtonMask represents a mask of pointer presses/releases.
 | |
| type ButtonMask uint8
 | |
| 
 | |
| // All available button mask components.
 | |
| const (
 | |
| 	ButtonLeft ButtonMask = 1 << iota
 | |
| 	ButtonMiddle
 | |
| 	ButtonRight
 | |
| 	Button4
 | |
| 	Button5
 | |
| 	Button6
 | |
| 	Button7
 | |
| 	Button8
 | |
| )
 | 
