home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n08
/
mfcpart3.exe
/
MOUSECAP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-01
|
499b
|
27 lines
class CMyApp : public CWinApp
{
public:
BOOL InitInstance ();
};
class CMainWindow : public CFrameWnd
{
private:
BOOL m_bTracking;
BOOL m_bCaptureEnabled;
CPoint m_pointFrom;
CPoint m_pointTo;
public:
CMainWindow ();
protected:
afx_msg void OnLButtonDown (UINT, CPoint);
afx_msg void OnLButtonUp (UINT, CPoint);
afx_msg void OnMouseMove (UINT, CPoint);
afx_msg void OnNcLButtonDown (UINT, CPoint);
DECLARE_MESSAGE_MAP ()
};