A_GetUSBDeviceInfo method

int A_GetUSBDeviceInfo(
  1. int nPort,
  2. Pointer<Char> pDeviceName,
  3. Pointer<Int> pDeviceNameLen,
  4. Pointer<Char> pDevicePath,
  5. Pointer<Int> pDevicePathLen,
)

Implementation

int A_GetUSBDeviceInfo(
  int nPort,
  ffi.Pointer<ffi.Char> pDeviceName,
  ffi.Pointer<ffi.Int> pDeviceNameLen,
  ffi.Pointer<ffi.Char> pDevicePath,
  ffi.Pointer<ffi.Int> pDevicePathLen,
) {
  return _A_GetUSBDeviceInfo(
    nPort,
    pDeviceName,
    pDeviceNameLen,
    pDevicePath,
    pDevicePathLen,
  );
}