You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
567 B
30 lines
567 B
#pragma once
|
|
#include "afxwin.h"
|
|
|
|
|
|
// CSetupDlg dialog
|
|
|
|
class CSetupDlg : public CDialog
|
|
{
|
|
DECLARE_DYNAMIC(CSetupDlg)
|
|
|
|
public:
|
|
CSetupDlg(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CSetupDlg();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_DIALOG_SETUP };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CComboBox m_cbCardID;
|
|
virtual BOOL OnInitDialog();
|
|
long m_nSampleCount;
|
|
long m_nSampleRate;
|
|
int m_nCardIdx;
|
|
afx_msg void OnCardNoSelchange();
|
|
// afx_msg void OnEnChangeEditCount();
|
|
};
|
|
|