home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / BATCH.PAK / COMPRESS.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.2 KB  |  46 lines

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (c) 1994 - 1995    Microsoft Corporation.    All Rights Reserved.
  9.  *
  10.  **************************************************************************/
  11. // compress.cpp : implementation file
  12. //
  13.  
  14. #include "stdafx.h"
  15. #include "batch.h"
  16. #include "compress.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char BASED_CODE THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CCompressThread
  25.  
  26. IMPLEMENT_DYNCREATE(CCompressThread, CWinThread)
  27.  
  28. CCompressThread::CCompressThread()
  29. {
  30. }
  31.  
  32. CCompressThread::~CCompressThread()
  33. {
  34. }
  35.  
  36.  
  37. BEGIN_MESSAGE_MAP(CCompressThread, CCmdTarget)
  38.     //{{AFX_MSG_MAP(CCompressThread)
  39.         // NOTE - the ClassWizard will add and remove mapping macros here.
  40.     //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42.  
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CCompressThread message handlers
  46.