// acxdriver.h
typedef struct _ACX_DRIVER_VERSION_AVAILABLE_PARAMS {
ULONG Size;
ULONG MajorVersion;
ULONG MinorVersion;
} ACX_DRIVER_VERSION_AVAILABLE_PARAMS, *PACX_DRIVER_VERSION_AVAILABLE_PARAMS;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure is passed as a parameter to the AcxDriverIsVersionAvailable function.
SizeThis field is set by the ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT function.
MajorVersionThe major version of the audio driver for which to check.
MinorVersionThe minor version of the audio driver for which to check.
Instances of this structure must be initialized by calling the ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT function. A pointer to an ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure is passed as a parameter to the AcxDriverIsVersionAvailable function.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.