Peter 085acd26c4 Add 'submodules/libtgvoip/' from commit 'dcbbfd9ec40ee8702852a768d75362142becc727'
git-subtree-dir: submodules/libtgvoip
git-subtree-mainline: d153fe0f21174c4d6e1c3602e852e7a0e53051f0
git-subtree-split: dcbbfd9ec40ee8702852a768d75362142becc727
2019-06-11 18:52:32 +01:00

33 lines
742 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 {
struct CellularCarrierInfo;
class DarwinSpecific{
public:
enum{
THREAD_PRIO_USER_INTERACTIVE,
THREAD_PRIO_USER_INITIATED,
THREAD_PRIO_UTILITY,
THREAD_PRIO_BACKGROUND,
THREAD_PRIO_DEFAULT
};
static void GetSystemName(char* buf, size_t len);
static void SetCurrentThreadPriority(int priority);
static CellularCarrierInfo GetCarrierInfo();
static void ConfigureAudioSession();
};
}
#endif //TGVOIP_DARWINSPECIFIC_H