home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / MFCCLWZ.DLL / SRCDATA / THREAD.CPP < prev    next >
Text File  |  1998-06-18  |  622b  |  34 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // %1
  3.  
  4. IMPLEMENT_DYNCREATE(%1, CWinThread)
  5.  
  6. %1::%1()
  7. {
  8. }
  9.  
  10. %1::~%1()
  11. {
  12. }
  13.  
  14. BOOL %1::InitInstance()
  15. {
  16.     // TODO:  perform and per-thread initialization here
  17.     return TRUE;
  18. }
  19.  
  20. int %1::ExitInstance()
  21. {
  22.     // TODO:  perform any per-thread cleanup here
  23.     return CWinThread::ExitInstance();
  24. }
  25.  
  26. BEGIN_MESSAGE_MAP(%1, CWinThread)
  27.     //{{AFX_MSG_MAP(%1)
  28.         // NOTE - the ClassWizard will add and remove mapping macros here.
  29.     //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // %1 message handlers