MyModemDlg.h
上传用户:hjb520
上传日期:2022-08-08
资源大小:1251k
文件大小:2k
源码类别:

Windows CE

开发平台:

Visual C++

  1. // MyModemDlg.h : header file
  2. //
  3. #if !defined(AFX_MYMODEMDLG_H__89DD9471_81AE_4446_A76C_1AC205C25A5B__INCLUDED_)
  4. #define AFX_MYMODEMDLG_H__89DD9471_81AE_4446_A76C_1AC205C25A5B__INCLUDED_
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyModemDlg dialog
  10. class CMyModemDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMyModemDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CMyModemDlg)
  17. enum { IDD = IDD_MYMODEM_DIALOG };
  18. CString m_sCommand;
  19. CString m_sText;
  20. CString m_sReceive;
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMyModemDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. BOOL IsChinesecharacter(BYTE ch);
  31. void ProcessChar(BYTE* cc,int len,CString& str);
  32. // Generated message map functions
  33. //{{AFX_MSG(CMyModemDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnSend();
  36. afx_msg void OnPickup();
  37. afx_msg void OnSendtext();
  38. afx_msg void OnSendtext2();
  39. virtual void OnCancel();
  40. afx_msg void OnSetfocusEdit1();
  41. afx_msg void OnSetfocusEdit2();
  42. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  43. afx_msg void OnTimer(UINT nIDEvent);
  44. afx_msg void OnDestroy();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_MYMODEMDLG_H__89DD9471_81AE_4446_A76C_1AC205C25A5B__INCLUDED_)