mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:42:45 +00:00 
			
		
		
		
	 3cba2a8a78
			
		
	
	
		3cba2a8a78
		
	
	
	
	
		
			
			Hook this up in Terminal so that the '\a' character generates a beep. Finally emit an '\a' character in the shell line editing code when backspacing at the start of the line.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			111 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			111 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| class PCSpeaker {
 | |
| public:
 | |
|     static void tone_on(int frequency);
 | |
|     static void tone_off();
 | |
| };
 |