mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
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();
|
|
};
|