#ifndef _NTPNPAPI_H
// private
typedef enum _DEVICE_TEXT_TYPE
{
DeviceTextDescription = 0, // DeviceDesc property
DeviceTextLocationInformation = 1 // DeviceLocation property
} DEVICE_TEXT_TYPE, *PDEVICE_TEXT_TYPE;
View code on GitHub
// wdm.h
typedef enum {
DeviceTextDescription,
DeviceTextLocationInformation
} DEVICE_TEXT_TYPE, *PDEVICE_TEXT_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
This topic describes the DEVICE_TEXT_TYPE enumeration.
DeviceTextDescription
Defines the DeviceTextDescription constant.
DeviceTextLocationInformation
Defines the DeviceTextLocationInformation constant.