home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / KOMUNIK / MIRRORIT / SRC / MIRRORIT.H < prev    next >
C/C++ Source or Header  |  1998-03-09  |  1KB  |  56 lines

  1. // MirrorIt.h : main header file for the MIRRORIT application
  2. //
  3.  
  4. #if !defined(AFX_MIRRORIT_H__C2396A67_40C6_11D1_83C6_0000C0003048__INCLUDED_)
  5. #define AFX_MIRRORIT_H__C2396A67_40C6_11D1_83C6_0000C0003048__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"       // main symbols
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMirrorItApp:
  19. // See MirrorIt.cpp for the implementation of this class
  20. //
  21.  
  22. class CMirrorItApp : public CWinApp
  23. {
  24. public:
  25.     CFile theDumpFile;
  26.     CStdioFile theLogFile;
  27.     void AddMimeType(CString & temp, int & i);
  28.     void LoadMimeTypes();
  29.     CStringList m_MimeTypes;
  30.     CMirrorItApp();
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CMirrorItApp)
  35.     public:
  36.     virtual BOOL InitInstance();
  37.     virtual int ExitInstance();
  38.     virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42.  
  43.     //{{AFX_MSG(CMirrorItApp)
  44.     afx_msg void OnAppAbout();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_MIRRORIT_H__C2396A67_40C6_11D1_83C6_0000C0003048__INCLUDED_)
  56.