QueryDosDeviceW method

int QueryDosDeviceW(
  1. Pointer<Uint16> lpDeviceName,
  2. Pointer<Uint16> lpTargetPath,
  3. int ucchMax
)

Implementation

int QueryDosDeviceW(
  ffi.Pointer<ffi.Uint16> lpDeviceName,
  ffi.Pointer<ffi.Uint16> lpTargetPath,
  int ucchMax,
) {
  return (_QueryDosDeviceW ??=
      _dylib.lookupFunction<_c_QueryDosDeviceW, _dart_QueryDosDeviceW>(
          'QueryDosDeviceW'))(
    lpDeviceName,
    lpTargetPath,
    ucchMax,
  );
}