// acxstreams.h
typedef struct _ACXDRMFORWARD {
ULONG Flags;
PDEVICE_OBJECT DeviceObject;
PFILE_OBJECT FileObject;
PVOID Context;
} ACXDRMFORWARD, *PACXDRMFORWARD;
View the official Windows Driver Kit DDI referenceNo description available.
The ACXDRMFORWARD structure contains the information that the DRM system driver needs in order to forward a DRM content ID to a device that handles protected content.
FlagsNo flag bits are currently defined. Set this member to zero.
DeviceObjectPointer to the device object, which is a system structure of type DEVICE_OBJECT.
FileObjectPointer to the file object, which is a system structure of type FILE_OBJECT.
ContextPointer to context data.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.