// winnt.h
DWORD RtlConvertDeviceFamilyInfoToString(
PDWORD pulDeviceFamilyBufferSize,
PDWORD pulDeviceFormBufferSize,
PWSTR DeviceFamily,
PWSTR DeviceForm
);
View the official Win32 API referenceNo description available.
Retrieves string representations of device family info.
pulDeviceFamilyBufferSizeType: _Inout_ PDWORD
The size of the buffer for the device family.
pulDeviceFormBufferSizeType: _Inout_ PDWORD
The size of the buffer for the device form.
DeviceFamilyType: _Out_writes_bytes_(*pulDeviceFamilyBufferSize) PWSTR
The retrieved device family.
DeviceFormType: _Out_writes_bytes_(*pulDeviceFormBufferSize) PWSTR
The retrieved device form.
Type: DWORD
A success or failure status.
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.