home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap05 / zero / NPZERO.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-20  |  943 b   |  36 lines

  1. // npZero.cpp : Defines the initialization routines for the DLL.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "npZero.h"
  6.  
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CNpZeroApp
  15.  
  16. BEGIN_MESSAGE_MAP(CNpZeroApp, CWinApp)
  17.     //{{AFX_MSG_MAP(CNpZeroApp)
  18.         // NOTE - the ClassWizard will add and remove mapping macros here.
  19.         //    DO NOT EDIT what you see in these blocks of generated code!
  20.     //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CNpZeroApp construction
  25.  
  26. CNpZeroApp::CNpZeroApp()
  27. {
  28.     // TODO: add construction code here,
  29.     // Place all significant initialization in InitInstance
  30. }
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CNpZeroApp object
  34.  
  35. CNpZeroApp theApp;
  36.