DEVICE_TEXT_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPNPAPI_H

// private
typedef enum _DEVICE_TEXT_TYPE
{
    DeviceTextDescription = 0,        // DeviceDesc property
    DeviceTextLocationInformation = 1 // DeviceLocation property
} DEVICE_TEXT_TYPE, *PDEVICE_TEXT_TYPE;

#endif

View code on GitHub
// wdm.h

typedef enum {
  DeviceTextDescription,
  DeviceTextLocationInformation
} DEVICE_TEXT_TYPE, *PDEVICE_TEXT_TYPE;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdm-device_text_type)

Description

This topic describes the DEVICE_TEXT_TYPE enumeration.

Constants

DeviceTextDescription

Defines the DeviceTextDescription constant.

DeviceTextLocationInformation

Defines the DeviceTextLocationInformation constant.

Remarks

See also