⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtspprop.h

📁 神龙卡 SDK_84xx_DShow_145_02.zip 这个是 windows 上二个是linux
💻 H
字号:
//
//
//	RTSP Property Page
////////////////////////////////////////////////////////////////////////////////
#ifndef _RTSPPROPERTY
#define _RTSPPROPERTY

//#include <windows.h>
#include "os.h"
#include "osinc.h"
#ifndef __STREAMS__
#include <streams.h>
#include <commdlg.h>
#include "resource.h"
#include <commctrl.h>
#include "irtsp.h"
#include "rmsource.h"
#endif

class CRTSPPropertyPage : public CBasePropertyPage  
{
public:
	static CUnknown * WINAPI CreateInstance(LPUNKNOWN lpunk, HRESULT *phr);
	CRTSPPropertyPage(TCHAR *pName, LPUNKNOWN pUnk);
	~CRTSPPropertyPage();
	void InitValues();
	// overwritten CBasePropertyPage methods
	HRESULT OnConnect(IUnknown *pUnknown);
    HRESULT OnDisconnect();
    HRESULT OnActivate();
    HRESULT OnDeactivate();
    HRESULT OnApplyChanges();
    BOOL OnReceiveMessage(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam);

    STDMETHODIMP NonDelegatingQueryInterface(REFIID riid,void **ppv);

	CRMSource*			m_pIRMSource;
	IRMSourceStream*	m_pRMSourceStream;
	CONN_DATA*			m_pPropConnParams;
	CRMProps			m_rmprops,*m_pRMProps;
	IRtsp*				m_pIRtsp;
	OPENFILENAME		m_propOpen;
	char				m_filepath[1024];
	char				m_ipaddress[1024];
	int					m_pathlength;
	LPCTSTR				m_pfiletypes;

protected:

private:
};


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -