home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / VC_4x_Wizard / cfxwiz.awx / TEMPLATE / ROOT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-12  |  1003 b   |  36 lines

  1. // $$root$$.cpp : Defines the initialization routines for the DLL.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "$$root$$.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. // C$$Safe_root$$App
  15.  
  16. BEGIN_MESSAGE_MAP(C$$Safe_root$$App, CWinApp)
  17.     //{{AFX_MSG_MAP(C$$Safe_root$$App)
  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. // C$$Safe_root$$App construction
  25.  
  26. C$$Safe_root$$App::C$$Safe_root$$App()
  27. {
  28.     // TODO: add construction code here,
  29.     // Place all significant initialization in InitInstance
  30. }
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only C$$Safe_root$$App object
  34.  
  35. C$$Safe_root$$App theApp;
  36.