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.

37 lines
1022 B

  1. // eventrap.h : main header file for the EVENTRAP application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CEventrapApp:
  8. // See eventrap.cpp for the implementation of this class
  9. //
  10. class CEventrapApp : public CWinApp
  11. {
  12. public:
  13. CEventrapApp();
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CEventrapApp)
  17. public:
  18. virtual BOOL InitInstance();
  19. virtual int ExitInstance();
  20. virtual BOOL ProcessMessageFilter(int code, LPMSG lpMsg);
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. //{{AFX_MSG(CEventrapApp)
  24. // NOTE - the ClassWizard will add and remove member functions here.
  25. // DO NOT EDIT what you see in these blocks of generated code !
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. /////////////////////////////////////////////////////////////////////////////