DEVICE_LIST

This structure stores information about each serial hardware device that can be handled by a particular serial device driver.

Syntax

typedef struct __DEVICE_LIST {
LPSTR DllName;
ULONG NumberOfDevices;
PHWOBJ *DeviceArray;
} DEVICE_LIST, *PDEVICE_LIST;

Members

DllName
Specifies the name of the DLL that contains the PDD layer associated with a serial device driver.
NumberOfDevices
Specifies the number of serial hardware devices that can be managed by the device driver named in DllName.
*DeviceArray
Specifies an array of HWOBJ structures that describes each serial hardware device.

Remarks

This structure is declared in the Serhw.h header file.

See Also

HWOBJ