playfile.h

来自「三汇CTI示例程序源码」· C头文件 代码 · 共 58 行

H
58
字号

#if !defined(AFX_PLAYFILE_H__F66B1B3F_B15B_4CAF_BF23_67F474EAA8DD__INCLUDED_)
#define AFX_PLAYFILE_H__F66B1B3F_B15B_4CAF_BF23_67F474EAA8DD__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// PlayFile.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CPlayFile dialog

class CPlayFile : public CDialog
{
// Construction
public:
	void InitLab();
	char	szCurrentPath[MAX_PATH];
	CPlayFile(CWnd* pParent = NULL);   // standard constructor
	CString strLab[10];
	//1--IDC_STATIC_PLAY	playback
	//2--IDC_STATIC_PLAYCH	playing channel
	

// Dialog Data
	//{{AFX_DATA(CPlayFile)
	enum { IDD = IDD_DIALOG_PLAYFILE };
	CComboBox	m_cmbPlayFile;
	CString	m_strFileName;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPlayFile)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CPlayFile)
	virtual BOOL OnInitDialog();
	afx_msg void OnButtonStopplayfile();
	afx_msg void OnButtonChoosefile();
	afx_msg void OnButtonPlayfile();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PLAYFILE_H__F66B1B3F_B15B_4CAF_BF23_67F474EAA8DD__INCLUDED_)

⌨️ 快捷键说明

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