home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / NETTOOLS.ZIP / nettools.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-22  |  1.1 KB  |  44 lines

  1. // nettools.h : main header file for the NETTOOLS application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9. #define WM_USER_PING_DONE (WM_USER + 1)
  10. #define WM_USER_PING_PRINT (WM_USER + 2)
  11. #define WM_USER_INET_DONE  (WM_USER+ 3)
  12. #define WM_USER_INET_PRINT (WM_USER+ 4)
  13. #define WM_USER_INET_TABS (WM_USER+ 5)
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CNettoolsApp:
  17. // See nettools.cpp for the implementation of this class
  18. //
  19.  
  20. class CNettoolsApp : public CWinApp
  21. {
  22. public:
  23.     CNettoolsApp();
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CNettoolsApp)
  28.     public:
  29.     virtual BOOL InitInstance();
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33.  
  34.     //{{AFX_MSG(CNettoolsApp)
  35.     afx_msg void OnAppAbout();
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.         //    DO NOT EDIT what you see in these blocks of generated code !
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.