home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / chatsrvr / chatsrvr.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  49 lines

  1. // chatsrvr.h : main header file for the CHATSRVR application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CServerApp:
  21. // See chatsrvr.cpp for the implementation of this class
  22. //
  23.  
  24. class CServerApp : public CWinApp
  25. {
  26. public:
  27.     CServerApp();
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CServerApp)
  32.     public:
  33.     virtual BOOL InitInstance();
  34.     virtual int ExitInstance();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CServerApp)
  40.     afx_msg void OnAppAbout();
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.