wavdevwn.h
来自「西安电子科技大学王亚民教授所著《组态软件设计与开发》附带的源代码07章」· C头文件 代码 · 共 43 行
H
43 行
// 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__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?