mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibWeb: Enable in Windows CI
This commit is contained in:
parent
c14173f651
commit
dbba6c0df9
Notes:
github-actions[bot]
2025-06-30 16:51:45 +00:00
Author: https://github.com/ayeteadoe
Commit: dbba6c0df9
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5215
Reviewed-by: https://github.com/ADKaster ✅
6 changed files with 19 additions and 4 deletions
|
@ -8,7 +8,11 @@
|
|||
|
||||
namespace Audio {
|
||||
|
||||
#if !defined(AK_OS_WINDOWS)
|
||||
ErrorOr<NonnullRefPtr<PlaybackStream>> __attribute__((weak)) PlaybackStream::create(OutputState, u32, u8, u32, AudioDataRequestCallback&&)
|
||||
#else
|
||||
ErrorOr<NonnullRefPtr<PlaybackStream>> PlaybackStream::create(OutputState, u32, u8, u32, AudioDataRequestCallback&&)
|
||||
#endif
|
||||
{
|
||||
return Error::from_string_literal("Audio output is not available for this platform");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue