home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap04 / npChap04.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  1.0 KB  |  43 lines

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