diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs')
-rw-r--r-- | src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs new file mode 100644 index 00000000..0ad2c485 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Services/BluetoothManager/ResultCode.cs @@ -0,0 +1,10 @@ +namespace Ryujinx.HLE.HOS.Services.BluetoothManager +{ + enum ResultCode + { + ModuleId = 143, + ErrorCodeShift = 9, + + Success = 0 + } +}
\ No newline at end of file |