IBDA_MUX::GetPidList method (bdaiface.h)

[The feature associated with this page, Microsoft TV Technologies, is a legacy feature. Microsoft strongly recommends that new code does not use this feature.]

Gets the list of packet identifiers (PIDs) that are enabled to go across the Protected Broadcast Driver Architecture (PBDA) interface.

Syntax

HRESULT GetPidList(
  [in, out] ULONG               *pulPidListCount,
  [in, out] BDA_MUX_PIDLISTITEM *pbPidListBuffer
);

Parameters

[in, out] pulPidListCount

On input, specifies the size, in array elements, of the pbPidListBuffer array. On output, receives the number of PIDs.

[in, out] pbPidListBuffer

Pointer to an array of BDA_MUX_PIDLISTITEM structures. The method fills in the array with the list of PIDs.

Return value

This method can return one of these values.

Return code Description
S_OK
The method succeeded.
E_NOT_SUFFICIENT_BUFFER
The pbPidListBuffer array is too small.

Remarks

If the pbPidListBuffer array is too small, the method returns E_NOT_SUFFICIENT_BUFFER and sets the required size in the pulPidListCount parameter.

Requirements

Requirement Value
Minimum supported client Windows�7 [desktop apps only]
Minimum supported server Windows Server�2008�R2 [desktop apps only]
Target Platform Windows
Header bdaiface.h

See also

IBDA_MUX