aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
blob: 2c72752768dbc54a89b65eafe2e809fb549c54df (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;
    }
}