WDF_DRIVER_VERSION_AVAILABLE_PARAMS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdfdriver-_wdf_driver_version_available_params)

_WDF_DRIVER_VERSION_AVAILABLE_PARAMS structure

Description

[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.

Members

Size

The size, in bytes, of this structure.

MajorVersion

A numeric value that represents the Kernel-Mode Driver Framework library's major version number.

MinorVersion

A numeric value that represents the Kernel-Mode Driver Framework library's minor version number.

Remarks

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.

See also

WDF_DRIVER_VERSION_AVAILABLE_PARAMS_INIT

WdfDriverIsVersionAvailable