Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

35 lines
826 B

// TVProfile.h : Declaration of the CTVProfile
#ifndef __TVPROFILE_H_
#define __TVPROFILE_H_
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CTVProfile
class ATL_NO_VTABLE CTVProfile :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CTVProfile, &CLSID_TVProfile>,
public IDispatchImpl<ITVProfile, &IID_ITVProfile, &LIBID_TVPROFLib>
{
public:
CTVProfile()
{
}
DECLARE_REGISTRY_RESOURCEID(IDR_TVPROFILE)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(CTVProfile)
COM_INTERFACE_ENTRY(ITVProfile)
COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()
// ITVProfile
public:
STDMETHOD(get_AudioDestination)(/*[out, retval]*/ long *pVal);
STDMETHOD(get_IPSinkAddress)(/*[out, retval]*/ BSTR *pVal);
};
#endif //__TVPROFILE_H_