mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-27 14:50:36 +00:00
13 lines
334 B
C
13 lines
334 B
C
|
#include "btdrv_shim.h"
|
||
|
#include <stratosphere/sf/sf_mitm_dispatch.h>
|
||
|
|
||
|
/* Command forwarders. */
|
||
|
Result btdrvInitializeBluetoothFwd(Service* s, Event *event) {
|
||
|
Handle handle = INVALID_HANDLE;
|
||
|
|
||
|
return serviceMitmDispatch(s, 1,
|
||
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
||
|
.out_handles = &handle,
|
||
|
);
|
||
|
}
|