home *** CD-ROM | disk | FTP | other *** search
- // mymouvw.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMymouseView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMymouseView : public CFormView
- {
- DECLARE_DYNCREATE(CMymouseView)
- protected:
- CMymouseView(); // protected constructor used by dynamic creation
-
- // Form Data
- public:
- //{{AFX_DATA(CMymouseView)
- enum { IDD = IDD_DIALOG1 };
- CString m_EditBoxContents;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMymouseView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMymouseView)
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-