IpMonitor.h
上传用户:ykzxjx
上传日期:2022-04-03
资源大小:1175k
文件大小:2k
开发平台:

Visual C++

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright 1999 - 2000 Mark Roddy
  4. // All Rights Reserved
  5. //
  6. // Hollis Technology Solutions
  7. // 94 Dow Road
  8. // Hollis, NH 03049
  9. // info@hollistech.com
  10. //
  11. // Synopsis: 
  12. // 
  13. //
  14. // Version Information:
  15. //
  16. // $Header: /iphook/usr/IpMonitor/IpMonitor.h 2     1/27/00 10:35p Markr $ 
  17. //
  18. ///////////////////////////////////////////////////////////////////////////////
  19. // IpMonitor.h : main header file for the IPMONITOR application
  20. //
  21. #if !defined(AFX_IPMONITOR_H__FCEDFE68_0D97_4ACF_A1CB_850F2A39530E__INCLUDED_)
  22. #define AFX_IPMONITOR_H__FCEDFE68_0D97_4ACF_A1CB_850F2A39530E__INCLUDED_
  23. #if _MSC_VER > 1000
  24. #pragma once
  25. #endif // _MSC_VER > 1000
  26. #ifndef __AFXWIN_H__
  27. #error include 'stdafx.h' before including this file for PCH
  28. #endif
  29. #include "resource.h"       // main symbols
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CIpMonitorApp:
  32. // See IpMonitor.cpp for the implementation of this class
  33. //
  34. //
  35. // the doc/view archiotecture sucks
  36. // forward references:
  37. //
  38. class CIpMonitorView;
  39. class CIpMonitorDoc;
  40. class CIpMonitorApp : public CWinApp
  41. {
  42. public:
  43. CIpMonitorApp();
  44. CIpMonitorView * m_theView;
  45. CIpMonitorDoc * m_theDoc;
  46. // Overrides
  47. // ClassWizard generated virtual function overrides
  48. //{{AFX_VIRTUAL(CIpMonitorApp)
  49. public:
  50. virtual BOOL InitInstance();
  51. //}}AFX_VIRTUAL
  52. // Implementation
  53. ServiceControl hookDriver;
  54. ServiceControl filterDriver;
  55. //{{AFX_MSG(CIpMonitorApp)
  56. afx_msg void OnAppAbout();
  57. // NOTE - the ClassWizard will add and remove member functions here.
  58. //    DO NOT EDIT what you see in these blocks of generated code !
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. extern CIpMonitorApp theApp;
  63. /////////////////////////////////////////////////////////////////////////////
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_IPMONITOR_H__FCEDFE68_0D97_4ACF_A1CB_850F2A39530E__INCLUDED_)
  67. ///////////////////////////////////////////////////////////////////////////////
  68. // 
  69. // Change History Log
  70. //
  71. // $Log: /iphook/usr/IpMonitor/IpMonitor.h $
  72. // 
  73. // 2     1/27/00 10:35p Markr
  74. // Prepare to release!
  75. //
  76. ///////////////////////////////////////////////////////////////////////////////