MeloNX/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
TSRBerry 2989c163a8
editorconfig: Set default encoding to UTF-8 (#5793)
* editorconfig: Add default charset

* Change file encoding from UTF-8-BOM to UTF-8
2023-12-04 14:17:13 +01:00

25 lines
778 B
C#

using Ryujinx.HLE.HOS.Kernel.Threading;
namespace Ryujinx.HLE.HOS.Services.Bluetooth.BluetoothDriver
{
static class BluetoothEventManager
{
public static KEvent InitializeBleDebugEvent;
public static int InitializeBleDebugEventHandle;
public static KEvent UnknownBleDebugEvent;
public static int UnknownBleDebugEventHandle;
public static KEvent RegisterBleDebugEvent;
public static int RegisterBleDebugEventHandle;
public static KEvent InitializeBleEvent;
public static int InitializeBleEventHandle;
public static KEvent UnknownBleEvent;
public static int UnknownBleEventHandle;
public static KEvent RegisterBleEvent;
public static int RegisterBleEventHandle;
}
}