mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-03 10:07:45 +01:00
5109903e02
On OS X, audio now plays only out of the right speaker on MacBook Pro's to avoid insane echo when using built-in speakers Fixed crash on Linux
20 lines
428 B
C++
20 lines
428 B
C++
//
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
// you should have received with this source code distribution.
|
|
//
|
|
|
|
#ifndef TGVOIP_DARWINSPECIFIC_H
|
|
#define TGVOIP_DARWINSPECIFIC_H
|
|
|
|
#include <string>
|
|
|
|
namespace tgvoip {
|
|
class DarwinSpecific{
|
|
public:
|
|
static void GetSystemName(char* buf, size_t len);
|
|
};
|
|
}
|
|
|
|
#endif //TGVOIP_DARWINSPECIFIC_H
|