mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
720 B
27 lines
720 B
/////////////////////////////////////////////////////////////////////////////////////
|
|
// ChannelTuneRequest.cpp : Implementation of CChannelTuneRequest
|
|
// Copyright (c) Microsoft Corporation 1999.
|
|
|
|
#include "stdafx.h"
|
|
#include "Tuner.h"
|
|
#include "ChannelTuneRequest.h"
|
|
|
|
DEFINE_EXTERN_OBJECT_ENTRY(CLSID_ChannelTuneRequest, CChannelTuneRequest)
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CChannelTuneRequest
|
|
|
|
STDMETHODIMP CChannelTuneRequest::InterfaceSupportsErrorInfo(REFIID riid)
|
|
{
|
|
static const IID* arr[] =
|
|
{
|
|
&IID_IChannelTuneRequest
|
|
};
|
|
for (int i=0; i < sizeof(arr) / sizeof(arr[0]); i++)
|
|
{
|
|
if (InlineIsEqualGUID(*arr[i],riid))
|
|
return S_OK;
|
|
}
|
|
return S_FALSE;
|
|
}
|
|
|