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