[fix] fix compile error on Macosx and Linux

This commit is contained in:
dijunkun
2024-08-02 13:56:22 +08:00
parent e4c05e1f4d
commit 3395004f93
6 changed files with 105 additions and 2 deletions

View File

@@ -10,7 +10,9 @@
#ifdef _WIN32
#include "speaker_capturer_wasapi.h"
#elif __linux__
#include "speaker_capturer_linux.h"
#elif __APPLE__
#include "speaker_capturer_macosx.h"
#endif
class SpeakerCapturerFactory {