A_GetUSBDeviceInfo method
Implementation
int A_GetUSBDeviceInfo(
int nPort,
String pDeviceName,
int pDeviceNameLen,
String pDevicePath,
int pDevicePathLen,
) {
return _A_GetUSBDeviceInfo(
nPort,
pDeviceName.toNativeUtf8().cast<ffi.Int8>(),
pDeviceNameLen.toString().toNativeUtf8().cast<ffi.Int32>(),
pDevicePath.toNativeUtf8().cast<ffi.Int8>(),
pDevicePathLen.toString().toNativeUtf8().cast<ffi.Int32>(),
);
}