📄 inetparams.h
字号:
// INetParams.h: interface for the INetParams class.
//
//////////////////////////////////////////////////////////////////////
#ifndef __H_IiFlyNetParams__
#define __H_IiFlyNetParams__
#ifdef __cplusplus
extern "C" {
#endif
// {037CBAC3-BE83-4944-A1B5-55D773A3F25A}
DEFINE_GUID(IID_IiFlyNetParams,
0x37cbac3, 0xbe83, 0x4944, 0xa1, 0xb5, 0x55, 0xd7, 0x73, 0xa3, 0xf2, 0x5a);
//----------------------------------------------------------------------------
//IFlyINetParams
//----------------------------------------------------------------------------
DECLARE_INTERFACE_(IiFlyNetParams, IUnknown)
{
STDMETHOD(put_RtpPort) (THIS_
const TCHAR* inRtpPort, UINT inStrLength
) PURE;
STDMETHOD(get_RtpPort) (THIS_
TCHAR* outRtpPort, UINT* outBufLength
) PURE;
STDMETHOD(put_VideoHeight) (THIS_
const UINT inVideoHeight
) PURE;
STDMETHOD(get_VideoHeight) (THIS_
UINT* outVideoHeight
) PURE;
STDMETHOD(put_VideoWidth) (THIS_
const UINT inVideoWidth
) PURE;
STDMETHOD(get_VideoWidth) (THIS_
UINT* outVideoWidth
) PURE;
};
//----------------------------------------------------------------------------
#ifdef __cplusplus
}
#endif
#endif //__H_IiFlyNetParams__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -