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.

55 lines
1.3 KiB

  1. // viewex.h : main header file for the VIEWEX application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. #if !defined(__AFXWIN_H__) || !defined(__AFXEXT_H__)
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h" // main symbols
  16. #include "maindoc.h" // main document data
  17. #include "simpvw.h" // simple read-only view
  18. #include "inputvw.h" // editable view
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CViewExApp:
  21. // See viewex.cpp for the implementation of this class
  22. //
  23. class CViewExApp : public CWinApp
  24. {
  25. public:
  26. int ExitInstance( void );
  27. CViewExApp();
  28. ~CViewExApp();
  29. // Overrides
  30. virtual BOOL InitInstance();
  31. // Implementation
  32. //{{AFX_MSG(CViewExApp)
  33. afx_msg void OnAppAbout();
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. class foo
  38. {
  39. public:
  40. foo();
  41. virtual ~foo();
  42. };
  43. /////////////////////////////////////////////////////////////////////////////