aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
blob: 81f4a7d292e4fb85855690d8ae54ea3d1befbe53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
    }
}