aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
blob: 2c72752768dbc54a89b65eafe2e809fb549c54df (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       
 
                                                            


                                                     
                                                        
                                                  
                                                     
                                                   
                                                      
                                                
                                                   
                                             
                                                
                                              
                                                 
     
 
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;
    }
}