1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-27 04:34:42 +01:00

Fix build without private APIs.

This commit is contained in:
John Preston 2019-11-30 11:19:58 +03:00
parent ade9db14ff
commit 4dabb67eff

View File

@ -39,7 +39,9 @@ class AudioOutputAudioUnit;
std::string currentInputDevice; std::string currentInputDevice;
std::string currentOutputDevice; std::string currentOutputDevice;
bool duckingEnabled=true; bool duckingEnabled=true;
#ifndef TGVOIP_NO_OSX_PRIVATE_API
bool actualDuckingEnabled=true; bool actualDuckingEnabled=true;
#endif // TGVOIP_NO_OSX_PRIVATE_API
AudioDeviceID currentOutputDeviceID; AudioDeviceID currentOutputDeviceID;
#endif #endif
AudioComponentInstance unit; AudioComponentInstance unit;