9 lines
157 B
C
9 lines
157 B
C
|
#pragma once
|
||
|
|
||
|
#include "ehs/EHS.h"
|
||
|
|
||
|
#if defined(EHS_OS_WINDOWS)
|
||
|
#include "AudioDevice_W32.h"
|
||
|
#elif defined(EHS_OS_LINUX)
|
||
|
#include "AudioDevice_ALSA.h"
|
||
|
#endif
|