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.
81 lines
1.7 KiB
81 lines
1.7 KiB
|
|
// Util7442Dlg.h : header file
|
|
//
|
|
|
|
#include "Dask64.h"
|
|
|
|
#pragma once
|
|
|
|
|
|
// CUtil7442Dlg dialog
|
|
class CUtil7442Dlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CUtil7442Dlg(I16 hCard, CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_UTIL7442_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
|
|
// Implementation
|
|
protected:
|
|
HICON m_hIcon;
|
|
UINT_PTR m_nTimer;
|
|
I16 m_hCard;
|
|
U32 m_dwInData[2];
|
|
U32 m_dwOutData[2];
|
|
U16 m_InDataPort;
|
|
U16 m_OutDataPort;
|
|
int m_OutPortIdx;
|
|
int m_InPortIdx;
|
|
|
|
// 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:
|
|
CStatic m_Icon_DI00;
|
|
CStatic m_Icon_DI01;
|
|
CStatic m_Icon_DI02;
|
|
CStatic m_Icon_DI03;
|
|
CStatic m_Icon_DI04;
|
|
CStatic m_Icon_DI05;
|
|
CStatic m_Icon_DI06;
|
|
CStatic m_Icon_DI07;
|
|
CStatic m_Icon_DI08;
|
|
CStatic m_Icon_DI09;
|
|
CStatic m_Icon_DI10;
|
|
CStatic m_Icon_DI11;
|
|
CStatic m_Icon_DI12;
|
|
CStatic m_Icon_DI13;
|
|
CStatic m_Icon_DI14;
|
|
CStatic m_Icon_DI15;
|
|
CComboBox m_cbPortInput;
|
|
CComboBox m_cbPortOutput;
|
|
afx_msg void OnDestroy();
|
|
afx_msg void OnTimer(UINT_PTR nIDEvent);
|
|
afx_msg void OnOut00();
|
|
afx_msg void OnOut01();
|
|
afx_msg void OnOut02();
|
|
afx_msg void OnOut03();
|
|
afx_msg void OnOut04();
|
|
afx_msg void OnOut05();
|
|
afx_msg void OnOut06();
|
|
afx_msg void OnOut07();
|
|
afx_msg void OnOut08();
|
|
afx_msg void OnOut09();
|
|
afx_msg void OnOut10();
|
|
afx_msg void OnOut11();
|
|
afx_msg void OnOut12();
|
|
afx_msg void OnOut13();
|
|
afx_msg void OnOut14();
|
|
afx_msg void OnOut15();
|
|
afx_msg void OnInPortSelchange();
|
|
afx_msg void OnOutPortSelchange();
|
|
};
|
|
|