RtlConvertDeviceFamilyInfoToString - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// winnt.h

DWORD RtlConvertDeviceFamilyInfoToString(
  PDWORD pulDeviceFamilyBufferSize,
  PDWORD pulDeviceFormBufferSize,
  PWSTR  DeviceFamily,
  PWSTR  DeviceForm
);
View the official Win32 API reference

NtDoc

No description available.

Win32 API reference (nf-winnt-rtlconvertdevicefamilyinfotostring)

Description

Retrieves string representations of device family info.

Parameters

pulDeviceFamilyBufferSize

Type: _Inout_ PDWORD

The size of the buffer for the device family.

pulDeviceFormBufferSize

Type: _Inout_ PDWORD

The size of the buffer for the device form.

DeviceFamily

Type: _Out_writes_bytes_(*pulDeviceFamilyBufferSize) PWSTR

The retrieved device family.

DeviceForm

Type: _Out_writes_bytes_(*pulDeviceFormBufferSize) PWSTR

The retrieved device form.

Return value

Type: DWORD

A success or failure status.

Remarks

At this time, this function doesn't have an associated library file. Your application can call LoadLibrary with the DLL name (NtDll.dll) to obtain a module handle. It can then call GetProcAddress with the module handle and the name of this function to get the function address.

See also