TAPISampleDlg.h
上传用户:c1686688
上传日期:2015-06-15
资源大小:73k
文件大小:2k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. // TAPISampleDlg.h : header file
  2. //
  3. #if !defined(AFX_TAPISAMPLEDLG_H__B7A9B92E_AC18_4505_A838_595981A80BFC__INCLUDED_)
  4. #define AFX_TAPISAMPLEDLG_H__B7A9B92E_AC18_4505_A838_595981A80BFC__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "TapiLine.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTAPISampleDlg dialog
  11. class CTAPISampleDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CTapiLine cCall;
  16. CTAPISampleDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CTAPISampleDlg)
  19. enum { IDD = IDD_TAPISAMPLE_DIALOG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CTAPISampleDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. HANDLE m_hWaitForCallThread;
  31. static DWORD WINAPI WaitForCallThread(LPVOID);
  32. bool m_bStopReadThread;
  33. HANDLE m_hReadThread;
  34. static DWORD WINAPI ReadThread(LPVOID lpVoid);
  35. HANDLE m_hSerialHandle;
  36. // Generated message map functions
  37. //{{AFX_MSG(CTAPISampleDlg)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40. afx_msg void OnPaint();
  41. afx_msg HCURSOR OnQueryDragIcon();
  42. afx_msg void OnBtnWait();
  43. afx_msg void OnBtnOpen();
  44. afx_msg void OnBtnDial();
  45. afx_msg void OnBtnComHandle();
  46. afx_msg void OnBtnRead();
  47. afx_msg void OnBtnWrite();
  48. afx_msg void OnBtnReadClear();
  49. afx_msg void OnBtnWriteClear();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_TAPISAMPLEDLG_H__B7A9B92E_AC18_4505_A838_595981A80BFC__INCLUDED_)