ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT - NtDoc

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

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxdriver-acx_driver_version_available_params_init)

Description

The ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT function initializes an ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure before calling the AcxDriverIsVersionAvailable function.

Parameters

Params

Pointer to an ACX_DRIVER_VERSION_AVAILABLE_PARAMS structure.

MajorVersion

The major version of the audio driver for which to check.

MinorVersion

The minor version of the audio driver for which to check.

Remarks

Example

ACX_DRIVER_VERSION_AVAILABLE_PARAMS ver;
ACX_DRIVER_VERSION_AVAILABLE_PARAMS_INIT(&ver, 1, 0);

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

See also