Microsoft DirectX 8.0 |
This interface is implemented on the DVBTuneRequest object.
ITuneRequest Method Name Description get_TuningSpace Retrieves the Tuning Space object. get_Components Retrieves the collection of IComponent objects. Clone Returns a new copy of this tune request. get_Locator Called from the Network Provider to get the ILocator object associated with the requested broadcast. put_Locator Called from the Network Provider to set the ILocator object associated with the requested broadcast. IDVBTuneRequest Method Name Description get_ONID Retrieves the original network ID. get_SID Sets the service ID. get_TSID Retrieves the transport stream ID. put_ONID Sets the original network ID. put_SID Retrieves the service ID. put_TSID Sets the transport stream ID.
Retrieves the original network ID.
Syntax
HRESULT get_ONID( short* ONID );
Parameters
- ONID
- [out, retval] Pointer to a variable of type short that receives the original network ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.
Retrieves the service ID for the network.
Syntax
HRESULT get_SID( short* SID );
Parameters
- SID
- [out, retval] Pointer to a variable of type short that receives the service ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.
Retrieves the transport stream ID.
Syntax
HRESULT get_TSID( short* TSID );
Parameters
- TSID
- [out, retval] Pointer to a variable of type short that receives the transport stream ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.
Sets the original network ID.
Syntax
HRESULT put_ONID( short ONID );
Parameters
- ONID
- [in] Variable of type short that specifies the original network ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.
Sets the service ID.
Syntax
HRESULT put_SID( short SID );
Parameters
- SID
- [in] Variable of type short that specifies the service ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.
Sets the transport stream ID.
Syntax
HRESULT put_TSID( short TSID );
Parameters
- TSID
- [in] Variable of type short that specifies the transport stream ID.
Return Value
Returns S_OK if successful. If the method fails, error information can be retrieved using the standard COM IErrorInfo interface.