// wdfdriver.h
typedef struct _WDF_DRIVER_VERSION_AVAILABLE_PARAMS {
ULONG Size;
ULONG MajorVersion;
ULONG MinorVersion;
} WDF_DRIVER_VERSION_AVAILABLE_PARAMS, *PWDF_DRIVER_VERSION_AVAILABLE_PARAMS;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF and UMDF]
The WDF_DRIVER_VERSION_AVAILABLE_PARAMS structure specifies major and minor version numbers for the Kernel-Mode Driver Framework's library.
SizeThe size, in bytes, of this structure.
MajorVersionA numeric value that represents the Kernel-Mode Driver Framework library's major version number.
MinorVersionA numeric value that represents the Kernel-Mode Driver Framework library's minor version number.
The WDF_DRIVER_VERSION_AVAILABLE_PARAMS structure is used as input to the WdfDriverIsVersionAvailable method. Drivers should call WDF_DRIVER_VERSION_AVAILABLE_PARAMS_INIT to initialize this structure before calling WdfDriverIsVersionAvailable.
WDF_DRIVER_VERSION_AVAILABLE_PARAMS_INIT