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.
42 lines
820 B
42 lines
820 B
|
|
// 7350IntDlg.h : header file
|
|
//
|
|
#include "Dask64.h"
|
|
|
|
#pragma once
|
|
|
|
|
|
// C7350IntDlg dialog
|
|
class C7350IntDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
C7350IntDlg(I16 hCard, CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_MY7350INT_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
|
|
// Implementation
|
|
protected:
|
|
HICON m_hIcon;
|
|
U32 m_dwOutVal;
|
|
U16 m_PatType;
|
|
I16 m_hCard;
|
|
|
|
// 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:
|
|
afx_msg void OnDestroy();
|
|
afx_msg void OnStart();
|
|
afx_msg void OnBnClickedRadioInc();
|
|
afx_msg void OnBnClickedRadioDec();
|
|
DWORD m_dwI2CSlaveAddr;
|
|
};
|
|
|