You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
669 B
24 lines
669 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.RTCAudio
|
|
{
|
|
/// <summary>
|
|
/// An enumeration of the different audio output device statuses.
|
|
/// </summary>
|
|
public enum RTCAudioOutputStatus : int
|
|
{
|
|
/// <summary>
|
|
/// The device is not in used right now (e.g: you are alone in the room). In such cases, the hardware resources are not allocated.
|
|
/// </summary>
|
|
Idle = 0,
|
|
/// <summary>
|
|
/// Device is in use
|
|
/// </summary>
|
|
Playing = 1,
|
|
/// <summary>
|
|
/// Something failed while trying to use the device
|
|
/// </summary>
|
|
Failed = 2
|
|
}
|
|
}
|