// acxdevice.h
typedef struct _ACX_DEVICE_CONFIG {
ULONG Size;
ULONG Flags;
PVOID Context[ACX_DEVICE_CONFIG_CONTEXT_SIZE];
} ACX_DEVICE_CONFIG, *PACX_DEVICE_CONFIG;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_DEVICE_CONFIG structure provides configuration information to the class extension.
SizeThe size of all of the data in the ACX_DEVICE_CONFIG structure in bytes. This field is set by the ACX_DEVICE_CONFIG_INIT function.
FlagsAn ACX_DEVICE_CONFIG_FLAGS value.
ContextPointer to the context space for the class extension.
Instances of this structure must be initialized by calling the ACX_DEVICE_CONFIG_INIT function. A pointer to an ACX_DEVICE_CONFIG structure is passed as a parameter to the AcxDeviceInitialize function.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.