// ntddchgr.h
typedef struct _CHANGER_ELEMENT_LIST {
CHANGER_ELEMENT Element;
ULONG NumberOfElements;
} CHANGER_ELEMENT_LIST, *PCHANGER_ELEMENT_LIST;
View the official Windows Driver Kit DDI reference// winioctl.h
typedef struct _CHANGER_ELEMENT_LIST {
CHANGER_ELEMENT Element;
DWORD NumberOfElements;
} CHANGER_ELEMENT_LIST, *PCHANGER_ELEMENT_LIST;
View the official Win32 API referenceNo description available.
The CHANGER_ELEMENT_LIST structure indicates a range of elements of a single type.
ElementDescribes the first element of type CHANGER_ELEMENT in a range NumberOfElements long.
NumberOfElementsSpecifies the number of elements in the range.
A changer class driver uses CHANGER_ELEMENT_LIST to indicate a range of elements of a single type, typically for an operation such as getting or initializing the status of multiple elements.
ChangerInitializeElementStatus
Represents a range of elements of a single type, typically for an operation such as getting or initializing the status of multiple elements.
ElementA CHANGER_ELEMENT structure that represent the first element in the range.
NumberOfElementsThe number of elements in the range.
IOCTL_CHANGER_REINITIALIZE_TRANSPORT