mirror of
https://github.com/danog/libtgvoip.git
synced 2024-12-02 17:51:06 +01:00
5380aaba0d
- Refactored audio I/O to allow sharing a common context between input and output, for those OSes that require this - Rewritten periodic operation handling to use a "run loop" thingy instead of an ugly loop formerly known as tick thread - Fixed a bunch of compiler warnings (closes #13) - Added automake so you no longer need to use the GYP file for standalone builds (closes #43)
28 lines
625 B
C++
28 lines
625 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:
|
|
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);
|
|
};
|
|
}
|
|
|
|
#endif //TGVOIP_DARWINSPECIFIC_H
|