MyDlg.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_MYDLG_H__4CF833FB_C7A9_4DE4_AF8A_D8D263E4D4C2__INCLUDED_)
  12. #define AFX_MYDLG_H__4CF833FB_C7A9_4DE4_AF8A_D8D263E4D4C2__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // MyDlg.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CMyDlg dialog
  20. class CMyDlg : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CMyDlg(UINT nIDTemplate, CWnd* pParent = NULL);   // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(CMyDlg)
  27. // NOTE: the ClassWizard will add data members here
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMyDlg)
  32. public:
  33. virtual BOOL PreTranslateMessage(MSG* pMsg);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HICON m_hIcon;
  38. // Generated message map functions
  39. //{{AFX_MSG(CMyDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_MYDLG_H__4CF833FB_C7A9_4DE4_AF8A_D8D263E4D4C2__INCLUDED_)