mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
91db482ad3
No functional change.
14 lines
228 B
C++
14 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();
|
|
};
|