inetparams.h
来自「MP4播放程序,好的很~~~喜欢就拿去」· C头文件 代码 · 共 52 行
H
52 行
// 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 + =
减小字号Ctrl + -
显示快捷键?