Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. // oclient.h : main header file for the OCLIENT 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. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h" // main symbols
  16. /////////////////////////////////////////////////////////////////////////////
  17. // COleClientApp: See oclient.cpp for the implementation of this class
  18. class COleClientApp : public CWinApp
  19. {
  20. public:
  21. COleClientApp();
  22. // Overrides
  23. virtual BOOL InitInstance();
  24. // Implementation
  25. protected:
  26. COleTemplateServer m_server;
  27. //{{AFX_MSG(COleClientApp)
  28. afx_msg void OnAppAbout();
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };