#include "btdrv_shim.h" #include Result btdrvInitializeBluetoothFwd(Service* srv, Handle *out_handle) { return serviceMitmDispatch(srv, 1, .out_handle_attrs = { SfOutHandleAttr_HipcCopy }, .out_handles = out_handle, ); } Result btdrvFinalizeBluetoothFwd(Service* srv) { return serviceMitmDispatch(srv, 4); } Result btdrvInitializeHidFwd(Service* srv, Handle *out_handle, u16 version) { return serviceMitmDispatchIn(srv, 16, version, .out_handle_attrs = { SfOutHandleAttr_HipcCopy }, .out_handles = out_handle, ); } Result btdrvWriteHidDataFwd(Service* srv, const BluetoothAddress *address, const BluetoothHidReport *data) { const struct { BluetoothAddress address; } in = { *address }; return serviceMitmDispatchIn(srv, 19, in, .buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_In }, .buffers = { {data, sizeof(BluetoothHidReport)} } ); } /* Result btdrvSetHidReportFwd(Service* srv, const BluetoothAddress *address, BluetoothHhReportType type, const BluetoothHidReport *data) { const struct { BluetoothAddress address; BluetoothHhReportType type; } in = { *address, type}; return serviceMitmDispatchIn(srv, 21, in, .buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_In }, .buffers = { {data, sizeof(BluetoothHidReport)} } ); } Result btdrvGetHidReportFwd(Service* srv, const BluetoothAddress *address, BluetoothHhReportType type, u8 id) { const struct { BluetoothAddress address; BluetoothHhReportType type; u8 id; } in = { *address, type, id }; return serviceMitmDispatchIn(srv, 22, in); } */ Result btdrvGetPairedDeviceInfoFwd(Service* srv, const BluetoothAddress *address, BluetoothDevicesSettings *device) { const struct { BluetoothAddress address; } in = { *address }; return serviceMitmDispatchIn(srv, 25, in, .buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_Out }, .buffers = { {device, sizeof(BluetoothDevicesSettings)} } ); } Result btdrvFinalizeHidFwd(Service* srv) { return serviceMitmDispatch(srv, 26); } Result btdrvRegisterHidReportEventFwd(Service* srv, Handle *out_handle) { return serviceMitmDispatch(srv, hosversionBefore(4, 0, 0) ? 36 : 37, .out_handle_attrs = { SfOutHandleAttr_HipcCopy }, .out_handles = out_handle, ); } Result btdrvGetHidReportEventInfoFwd(Service* srv, Handle *out_handle) { return serviceMitmDispatch(srv, 38, .out_handle_attrs = { SfOutHandleAttr_HipcCopy }, .out_handles = out_handle, ); } Result btdrvInitializeBleFwd(Service* srv, Handle *out_handle) { return serviceMitmDispatch(srv, 46, .out_handle_attrs = { SfOutHandleAttr_HipcCopy }, .out_handles = out_handle, ); } Result btdrvFinalizeBleFwd(Service* srv) { return serviceMitmDispatch(srv, 49); }