Files
ts-mobile-go/docs/teamspeak-sdk-3.5.2/samples/source/client_cpp_repeater/custom_device.hpp
T
2026-07-20 19:01:03 +08:00

17 lines
305 B
C++

#pragma once
#include <cstdint>
namespace com::teamspeak
{
class Custom_Device
{
public:
Custom_Device(uint32_t& error);
~Custom_Device();
static constexpr const char* custom_mode = "custom";
static constexpr const char* custom_device = "loopback";
};
}