audio: init

This commit is contained in:
alichraghi 2022-06-26 21:55:25 +04:30 committed by Stephen Gutekanst
parent b8a7c4ba94
commit 0980ba838a
12 changed files with 395 additions and 0 deletions

3
audio/soundio/c.zig Normal file
View file

@ -0,0 +1,3 @@
pub usingnamespace @cImport({
@cInclude("soundio/soundio.h");
});

3
audio/soundio/main.zig Normal file
View file

@ -0,0 +1,3 @@
test {
_ = @import("c.zig");
}