audio: rename to 'sysaudio'

This commit is contained in:
alichraghi 2022-07-13 12:16:28 +04:30 committed by Stephen Gutekanst
parent 0fb712d19e
commit f8f4dcf55f
22 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,11 @@
const c = @import("c.zig");
const intToError = @import("error.zig").intToError;
const Error = @import("error.zig").Error;
const ChannelLayout = @This();
handle: c.SoundIoChannelLayout,
pub fn channelCount(self: ChannelLayout) i32 {
return self.handle.channel_count;
}