mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
Result btdrvInitializeBluetoothFwd(Service* s, Handle *out_handle);
|
|
Result btdrvFinalizeBluetoothFwd(Service* s);
|
|
|
|
Result btdrvCancelBondFwd(Service* s, const BluetoothAddress *address);
|
|
|
|
Result btdrvGetEventInfoFwd(Service* s, BluetoothEventType *type, u8 *buffer, size_t size);
|
|
Result btdrvInitializeHidFwd(Service* s, Handle *out_handle, u16 version);
|
|
Result btdrvWriteHidDataFwd(Service* s, const BluetoothAddress *address, const BluetoothHidData *data);
|
|
|
|
//Result btdrvGetPairedDeviceInfoFwd(Service* s, const BluetoothAddress *address, BluetoothDevicesSettings *device);
|
|
|
|
Result btdrvFinalizeHidFwd(Service* s);
|
|
Result btdrvGetHidEventInfoFwd(Service* s, HidEventType *type, u8 *buffer, size_t size);
|
|
Result btdrvRegisterHidReportEventFwd(Service* s, Handle *out_handle);
|
|
Result btdrvGetHidReportEventInfoDeprecatedFwd(Service* s, HidEventType *type, u8 *buffer, size_t size);
|
|
Result btdrvGetHidReportEventInfoFwd(Service* s, Handle *out_handle);
|
|
|
|
Result btdrvInitializeBleFwd(Service* s, Handle *out_handle);
|
|
Result btdrvFinalizeBleFwd(Service* s);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|