QueryDosDeviceA method

int QueryDosDeviceA(
  1. Pointer<Int8> lpDeviceName,
  2. Pointer<Int8> lpTargetPath,
  3. int ucchMax
)

Implementation

int QueryDosDeviceA(
  ffi.Pointer<ffi.Int8> lpDeviceName,
  ffi.Pointer<ffi.Int8> lpTargetPath,
  int ucchMax,
) {
  return (_QueryDosDeviceA ??=
      _dylib.lookupFunction<_c_QueryDosDeviceA, _dart_QueryDosDeviceA>(
          'QueryDosDeviceA'))(
    lpDeviceName,
    lpTargetPath,
    ucchMax,
  );
}