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.
43 lines
882 B
43 lines
882 B
|
4 weeks ago
|
|
||
|
|
// 7452intDlg.h : header file
|
||
|
|
//
|
||
|
|
#include "Dask64.h"
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
|
||
|
|
// C7452intDlg dialog
|
||
|
|
class C7452intDlg : public CDialog
|
||
|
|
{
|
||
|
|
// Construction
|
||
|
|
public:
|
||
|
|
C7452intDlg(I16 hCard, CWnd* pParent = NULL); // standard constructor
|
||
|
|
|
||
|
|
// Dialog Data
|
||
|
|
enum { IDD = IDD_MY7452INT_DIALOG };
|
||
|
|
|
||
|
|
protected:
|
||
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
|
|
||
|
|
|
||
|
|
// Implementation
|
||
|
|
protected:
|
||
|
|
HICON m_hIcon;
|
||
|
|
I16 m_hCard;
|
||
|
|
int m_IntCount;
|
||
|
|
int m_IntCount2;
|
||
|
|
HANDLE m_hIntEvent[2];
|
||
|
|
|
||
|
|
// Generated message map functions
|
||
|
|
virtual BOOL OnInitDialog();
|
||
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
||
|
|
afx_msg void OnPaint();
|
||
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
||
|
|
afx_msg LRESULT OnExtSIGInterrupt1(WPARAM wParam, LPARAM lParam);
|
||
|
|
afx_msg LRESULT OnExtSIGInterrupt2(WPARAM wParam, LPARAM lParam);
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
public:
|
||
|
|
afx_msg void OnDestroy();
|
||
|
|
afx_msg void OnOutput();
|
||
|
|
};
|