* Migrate friends service to new IPC * Add a note that the pointer buffer size and domain counts are wrong * Wrong length * Format whitespace * PR feedback * Fill in structs from PR feedback * Missed that one * Somehow forgot to save that one * Fill in enums from PR review * Language enum, NotificationTime * Format whitespace * Fix the warning
30 lines
888 B
C#
30 lines
888 B
C#
using Ryujinx.Common.Memory;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Settings.System
|
|
{
|
|
struct BluetoothDevicesSettings
|
|
{
|
|
#pragma warning disable CS0649 // Field is never assigned to
|
|
public Array6<byte> BdAddr;
|
|
public Array32<byte> DeviceName;
|
|
public Array3<byte> ClassOfDevice;
|
|
public Array16<byte> LinkKey;
|
|
public bool LinkKeyPresent;
|
|
public ushort Version;
|
|
public uint TrustedServices;
|
|
public ushort Vid;
|
|
public ushort Pid;
|
|
public byte SubClass;
|
|
public byte AttributeMask;
|
|
public ushort DescriptorLength;
|
|
public Array128<byte> Descriptor;
|
|
public byte KeyType;
|
|
public byte DeviceType;
|
|
public ushort BrrSize;
|
|
public Array9<byte> Brr;
|
|
public Array256<byte> Reserved;
|
|
public Array43<byte> Reserved2;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|