Share via


DEVICE_LIST

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

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 lower 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, each of which describes a serial hardware device.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Serhw.h.

See Also

HWOBJ

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.