home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / csystray.000 / csystray / systray.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-22  |  765 b   |  37 lines

  1. // systray.h : main header file for the SYSTRAY 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.  
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSystrayApp:
  13. // See systray.cpp for the implementation of this class
  14. //
  15.  
  16. class CSystrayApp : public CWinApp
  17. {
  18. public:
  19.     CSystrayApp();
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CSystrayApp)
  24.     public:
  25.     virtual BOOL InitInstance();
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29.  
  30.     //{{AFX_MSG(CSystrayApp)
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.  
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37.