DRVENABLEDATA

typedef struct tagDRVENABLEDATA {
    ULONG iDriverVersion;
    ULONG c;
    DRVFN *pdrvfn;
} DRVENABLEDATA, *PDRVENABLEDATA;

The DRVENABLEDATA structure contains a pointer to an array of DRVFN structures and the DDI version number of the structures.

Members

iDriverVersion
Specifies the DDI version number for which the driver is targeted, such as 0x00010000.
c
Specifies the number of DRVFN structures in the buffer pointed to by the pdrvfn member.
pdrvfn
Points to a buffer containing an array of DRVFN structures.

See Also

DrvEnableDriver