1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sokol.audio: add proper #flag for windows (-lole32)

This commit is contained in:
Delyan Angelov 2020-08-23 21:15:21 +03:00
parent e71aff71ce
commit 2e589a5b0b

View File

@ -5,6 +5,8 @@ module audio
#include "sokol_audio.h"
#flag linux -lasound
#flag darwin -framework AudioToolbox
#flag windows -lole32
//
pub type FNStreamingCB = fn (buffer &f32, num_frames, num_channels int)