wndnotify.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. ////////////////////////////////////////////////////////////////////////////////
  2. //  
  3. //  FileName    :   WndNotify.h
  4. //  Version     :   1.0
  5. //  Creater     :   Linsuyi
  6. //  Date        :   2002-01-31  11:18:20
  7. //  Comment     :   CWndNotify class header file
  8. //  
  9. ////////////////////////////////////////////////////////////////////////////////
  10. #if !defined(AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_)
  11. #define AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15. class CWndNotify  
  16. {
  17. public:
  18.     CWndNotify();
  19.     CWndNotify(ULONG ulMessage);
  20.     
  21.     virtual ~CWndNotify();
  22.     
  23. public:
  24.     int SetNotifyMessage(ULONG ulMessage);
  25.     int GetNotifyMessage(ULONG ulMessage);
  26.     
  27. protected:
  28.     virtual int IsNotifyMessage(const MSG *pMsg, ULONG *pulResult);
  29.     
  30. protected:
  31.     ULONG m_ulNotifyMessage;
  32. };
  33. #endif // !defined(AFX_WNDNOTIFY_H__B517EC07_D294_4E1B_905A_D79D3B4A90A3__INCLUDED_)