// wdfchildlist.h
VOID WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER_INIT(
[out] PWDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER Header,
[in] ULONG IdentificationDescriptionSize
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF only]
The WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER_INIT function initializes a WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER structure.
Header
[out]A pointer to a driver-allocated WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER structure.
IdentificationDescriptionSize
[in]The size, in bytes, of a driver-defined structure that contains device identification information. For more information about specifying the size value, see WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER.
The WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER_INIT function zeros the specified WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER structure and sets the structure's IdentificationDescriptionSize member to the specified value.
For more information about child identification descriptions, see Dynamic Enumeration.
For a code example that uses WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER_INIT, see WdfChildListAddOrUpdateChildDescriptionAsPresent.
WDF_CHILD_IDENTIFICATION_DESCRIPTION_HEADER