// acxdriver.h
VOID ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT(
PACX_DRIVER_VERSION_AVAILABLE_PARAMS Params,
ULONG MajorVersion,
ULONG MinorVersion
);
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT function initializes an ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure before calling the AcxDriverIsVersionAvailable function.
ParamsPointer to an ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure.
MajorVersionThe major version of the audio driver for which to check.
MinorVersionThe minor version of the audio driver for which to check.
ACX_DRIVER_VERSION_AVAILABLE_PARAMS ver;
ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT(&ver, 1, 0);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.