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.

32 lines
780 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 channel statuses.
/// </summary>
public enum RTCAudioStatus : int
{
/// <summary>
/// Audio unsupported by the source (no devices)
/// </summary>
Unsupported = 0,
/// <summary>
/// Audio enabled
/// </summary>
Enabled = 1,
/// <summary>
/// Audio disabled
/// </summary>
Disabled = 2,
/// <summary>
/// Audio disabled by the administrator
/// </summary>
AdminDisabled = 3,
/// <summary>
/// Audio channel is disabled temporarily for both sending and receiving
/// </summary>
NotListeningDisabled = 4
}
}