wndnotify.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- ////////////////////////////////////////////////////////////////////////////////
- //
- // FileName : WndNotify.h
- // Version : 1.0
- // Creater : Linsuyi
- // Date : 2002-01-31 11:18:20
- // Comment : CWndNotify class header file
- //
- ////////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_)
- #define AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CWndNotify
- {
- public:
- CWndNotify();
- CWndNotify(ULONG ulMessage);
-
- virtual ~CWndNotify();
-
- public:
- int SetNotifyMessage(ULONG ulMessage);
- int GetNotifyMessage(ULONG ulMessage);
-
- protected:
- virtual int IsNotifyMessage(const MSG *pMsg, ULONG *pulResult);
-
- protected:
- ULONG m_ulNotifyMessage;
- };
- #endif // !defined(AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_)