Ryujinx/Ryujinx.HLE/HOS/Services/Bluetooth/BluetoothDriver/BluetoothEventManager.cs
Ac_K a0720b5681 Refactoring HOS folder structure (#771)
* Refactoring HOS folder structure

Refactoring HOS folder structure:

- Added some subfolders when needed (Following structure decided in private).
- Added some `Types` folders when needed.
- Little cleanup here and there.
- Add services placeholders for every HOS services (close #766 and #753).

* Remove Types namespaces
2019-09-19 10:45:11 +10:00

25 lines
No EOL
798 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;
}
}