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.

61 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. evtview.h
  5. Abstract:
  6. Author:
  7. Sivaprasad Padisetty (sivapad) 6/25/97
  8. Revision History:
  9. --*/
  10. #ifndef __AFXWIN_H__
  11. #error include 'stdafx.h' before including this file for PCH
  12. #endif
  13. #include "resource.h" // main symbols
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CEvtviewApp:
  16. // See evtview.cpp for the implementation of this class
  17. //
  18. class CEvtviewApp : public CWinApp
  19. {
  20. public:
  21. CEvtviewApp();
  22. void OnFileNew () { CWinApp::OnFileNew() ; } ;
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CEvtviewApp)
  26. public:
  27. virtual BOOL InitInstance();
  28. virtual int ExitInstance();
  29. virtual BOOL OnIdle(LONG lCount);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. //{{AFX_MSG(CEvtviewApp)
  33. afx_msg void OnAppAbout();
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. // DO NOT EDIT what you see in these blocks of generated code !
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////