www.pudn.com > PCMYPCCGLQ.rar > pcmdumperprop.h


 
#if !defined _PCMDUMPERPROP_H_ 
#define _PCMDUMPERPROP_H_ 
 
class CPCMDumperProp : public CBasePropertyPage 
{ 
public: 
 
    static CUnknown * WINAPI CreateInstance(LPUNKNOWN lpunk, HRESULT *phr); 
 
private: 
 
    BOOL OnReceiveMessage(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam); 
    HRESULT OnConnect(IUnknown *pUnknown); 
    HRESULT OnDisconnect(); 
    HRESULT OnActivate(); 
    HRESULT OnDeactivate(); 
    HRESULT OnApplyChanges(); 
 
    void    GetControlValues(); 
 
    CPCMDumperProp(LPUNKNOWN lpunk, HRESULT *phr); 
 
    BOOL m_bIsInitialized;   
	int  m_mediatype; 
 
    IMEDIATYPE *m_pIMediaType;  
}; 
 
#endif // _PCMDUMPERPROP_H_