home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / BATCH.PAK / BATCH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.6 KB  |  56 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. // batch.h : main header file for the BATCH application
  12. //
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"       // main symbols
  19.  
  20. // For Thread Local Storage for the AVISave callback
  21. extern DWORD gdwTlsCookie;
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CBatchApp:
  25. // See batch.cpp for the implementation of this class
  26. //
  27.  
  28. class CBatchApp : public CWinApp
  29. {
  30. public:
  31.     CBatchApp();
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CBatchApp)
  36.     public:
  37.     virtual BOOL InitInstance();
  38.     virtual int ExitInstance();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42.  
  43.     //{{AFX_MSG(CBatchApp)
  44.     afx_msg void OnAppAbout();
  45.     afx_msg void OnOptionsCompressAll();
  46.     afx_msg void OnOptionsStop();
  47.     afx_msg void OnUpdateStop(CCmdUI* pCmdUI);
  48.     afx_msg void OnUpdateCompressAll(CCmdUI* pCmdUI);
  49.     afx_msg void OnUpdateAppExit(CCmdUI* pCmdUI);
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.