mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 04:22:50 +02:00
Fixed name for endpoint get-report cmd.
This commit is contained in:
parent
7333864957
commit
6aa7ac0ec8
@ -214,6 +214,6 @@ Result usbDsInterface_StallCtrl(UsbDsInterface* interface);
|
||||
|
||||
void usbDsEndpoint_Close(UsbDsEndpoint* endpoint);
|
||||
Result usbDsEndpoint_PostBufferAsync(UsbDsEndpoint* endpoint, void* buffer, size_t size, u32 *out);
|
||||
Result usbDsEndpoint_GetCtrlOutReportData(UsbDsEndpoint* endpoint, u8 out[0x84]);
|
||||
Result usbDsEndpoint_GetReportData(UsbDsEndpoint* endpoint, u8 out[0x84]);
|
||||
Result usbDsEndpoint_StallCtrl(UsbDsEndpoint* endpoint);
|
||||
|
||||
|
@ -614,7 +614,7 @@ Result usbDsEndpoint_PostBufferAsync(UsbDsEndpoint* endpoint, void* buffer, size
|
||||
return _usbDsPostBuffer(endpoint->h, 0, buffer, size, out);
|
||||
}
|
||||
|
||||
Result usbDsEndpoint_GetCtrlOutReportData(UsbDsEndpoint* endpoint, u8 out[0x84])
|
||||
Result usbDsEndpoint_GetReportData(UsbDsEndpoint* endpoint, u8 out[0x84])
|
||||
{
|
||||
if(!endpoint->initialized)return MAKERESULT(MODULE_LIBNX, LIBNX_NOTINITIALIZED);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user