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.
48 lines
914 B
48 lines
914 B
|
|
// pci8554Dlg.h : header file
|
|
//
|
|
#include "Dask64.h"
|
|
|
|
#pragma once
|
|
|
|
|
|
// Cpci8554Dlg dialog
|
|
class Cpci8554Dlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
Cpci8554Dlg(I16 nCard, CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_PCI8554_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
|
|
// Implementation
|
|
protected:
|
|
HICON m_hIcon;
|
|
int m_OperationMode;
|
|
time_t m_time1, m_time2;
|
|
|
|
|
|
// Generated message map functions
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CComboBox m_cbMode;
|
|
|
|
|
|
public:
|
|
// the CardID of targer device
|
|
I16 m_hCard;
|
|
afx_msg void OnTimer(UINT_PTR nIDEvent);
|
|
afx_msg void OnDestroy();
|
|
afx_msg void OnModeSelchange();
|
|
afx_msg void OnBnClickedBtStart();
|
|
void wait_pulse_start(void);
|
|
};
|
|
|