home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n10 / cppq1195.exe / APP.H < prev    next >
C/C++ Source or Header  |  1995-10-01  |  585b  |  24 lines

  1. ////////////////////////////////////////////////////////////////
  2. // TRACEWIN Copyright 1995 Microsoft Systems Journal. 
  3. // If this program works, it was written by Paul DiLascia.
  4. // If not, I don't know who wrote it.
  5. //
  6. // TRACEWIN applet sits around waiting for diagnostic messages from 
  7. // MFC apps that have #included TRACEWIN.H
  8.  
  9. #include "resource.h"
  10.  
  11. /////////////////
  12. // Application class
  13. //
  14. class CApp : public CWinApp {
  15. public:
  16.     CApp();
  17.     virtual BOOL InitInstance();
  18.  
  19.     //{{AFX_MSG(CApp)
  20.     afx_msg void OnAppAbout();
  21.     //}}AFX_MSG
  22.     DECLARE_MESSAGE_MAP()
  23. };
  24.