RtlConvertDeviceFamilyInfoToString method

int RtlConvertDeviceFamilyInfoToString(
  1. Pointer<Uint64> pulDeviceFamilyBufferSize,
  2. Pointer<Uint64> pulDeviceFormBufferSize,
  3. Pointer<Uint16> DeviceFamily,
  4. Pointer<Uint16> DeviceForm,
)

Implementation

int RtlConvertDeviceFamilyInfoToString(
  ffi.Pointer<ffi.Uint64> pulDeviceFamilyBufferSize,
  ffi.Pointer<ffi.Uint64> pulDeviceFormBufferSize,
  ffi.Pointer<ffi.Uint16> DeviceFamily,
  ffi.Pointer<ffi.Uint16> DeviceForm,
) {
  return (_RtlConvertDeviceFamilyInfoToString ??= _dylib.lookupFunction<
          _c_RtlConvertDeviceFamilyInfoToString,
          _dart_RtlConvertDeviceFamilyInfoToString>(
      'RtlConvertDeviceFamilyInfoToString'))(
    pulDeviceFamilyBufferSize,
    pulDeviceFormBufferSize,
    DeviceFamily,
    DeviceForm,
  );
}