// acxstreams.h
NTSTATUS AcxDrmAddContentHandlers(
ULONG ContentId,
PVOID *paHandlers,
ULONG NumHandlers
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxDrmAddContentHandlers function provides the system with a list of functions that handle protected content.
ContentIdSpecifies a nonzero DRM content ID assigned to an ACX audio stream by AcxDrmCreateContentMixed. Note that a content ID of zero represents an audio stream with default DRM content rights, and cannot be used with this function.
paHandlersPointer to an array of function pointers. Each array element points to a content handler.
NumHandlersSpecifies the number of function pointers in the paHandlers array.
AcxDrmAddContentHandlers returns STATUS_SUCCESS if the call was successful. Otherwise, it returns an appropriate error code.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.