Ryujinx/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs

10 lines
169 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.BluetoothManager
{
enum ResultCode
{
ModuleId = 143,
ErrorCodeShift = 9,
Success = 0
}
}