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(
    lpDeviceName,
    lpTargetPath,
    ucchMax,
  );
}