www.pudn.com > 组态软件的语音处理.rar > WAVDEVWN.H
// wavdevwn.h : header file
//
#ifndef __WAVDEVWN__
#define __WAVDEVWN__
/////////////////////////////////////////////////////////////////////////////
// CWaveDevWnd window
class CWaveOutDevice;
class CWaveDevWnd : public CWnd
{
// Construction
public:
CWaveDevWnd();
// Attributes
public:
// Operations
public:
BOOL Create(CWaveOutDevice* pDev);
// Implementation
public:
virtual ~CWaveDevWnd();
private:
CWaveOutDevice* m_pWaveOutDevice;
// Generated message map functions
protected:
//{{AFX_MSG(CWaveDevWnd)
afx_msg LRESULT OnWomDone(WPARAM w, LPARAM l);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __WAVDEVWN__