리크 테스트 gui
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.
 
 
 
 
 
 

38 lines
800 B

#pragma once
#include "afxwin.h"
#include "Dask64.h"
// CCardIDDlg dialog
class CCardIDDlg : public CDialog
{
DECLARE_DYNAMIC(CCardIDDlg)
public:
CCardIDDlg(int nCardIdx, CWnd* pParent = NULL); // standard constructor
virtual ~CCardIDDlg();
// Dialog Data
enum { IDD = IDD_CARDID_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedOk();
afx_msg void OnMCounterEnable();
// the setting of CardID ComboBox
int m_nCardIdx;
U16 m_wTrigMode;
U8 m_bMCountSts;
// the control of CardID ComboBox
CComboBox m_cbCardID;
CComboBox m_cbTrigMode;
// the function to get the selected CardID
int GetCardID(void);
U16 GetTrigMode(void);
U8 GetMCountSts(void);
};