CChatServer.h
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:2k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // CChatServer.h : main header file for the CCHATSERVER application
  2. //
  3. #if !defined(AFX_CCHATSERVER_H__211D3B80_125E_4FDA_B846_0D6CFBB78A5A__INCLUDED_)
  4. #define AFX_CCHATSERVER_H__211D3B80_125E_4FDA_B846_0D6CFBB78A5A__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h"       // main symbols
  12. #include "ServerSocket.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CCChatServerApp:
  15. // See CChatServer.cpp for the implementation of this class
  16. //
  17. class CCChatServerApp : public CWinApp
  18. {
  19. public:
  20. CCChatServerApp();
  21. private:
  22. CServerSocket m_skServerSocket;
  23. BOOL  bInit;
  24. NOTIFYICONDATA TaskIcon;
  25. public:
  26. void DeleteAllList();
  27. CPtrList m_ChatRoomList;
  28. CPtrList * m_pClientSocketList;
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CCChatServerApp)
  32. public:
  33. virtual BOOL InitInstance();
  34. virtual int ExitInstance();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. //{{AFX_MSG(CCChatServerApp)
  38. afx_msg void OnAppAbout();
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //    DO NOT EDIT what you see in these blocks of generated code !
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_CCHATSERVER_H__211D3B80_125E_4FDA_B846_0D6CFBB78A5A__INCLUDED_)