mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
91db482ad3
No functional change.
13 lines
228 B
C++
13 lines
228 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class PCSpeaker {
|
|
public:
|
|
static void tone_on(int frequency);
|
|
static void tone_off();
|
|
};
|