QueryDosDeviceA method
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,
);
}