// fileview.h : Declares the class interfaces for the application.
//          Fileview is a program which can display the contents of
//          a text-only file regardless of its size.
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and Microsoft
// QuickHelp documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.

#ifndef __CHIMES_H__
#define __CHIMES_H__

#include <afxwin.h>
#include "dcemidi.h"
#include "resource.h"
#include "main.h"

/////////////////////////////////////////////////////////////////////////////

// CMainWindow:
// See fileview.cpp for the code to the member functions and the
// message map.
//

class CMainWindow : public CFrameWnd
{
public:
	CMainWindow();
	~CMainWindow();

	afx_msg int  OnCreate(LPCREATESTRUCT lpcs);
	afx_msg void OnAbout();
	afx_msg void OnOpen();
	afx_msg void OnExit();
	afx_msg void OnClose();
	void OnPlayStop();
	
private:
	CMyMainDialog *p_dlg;
	
	DECLARE_MESSAGE_MAP();
	
};

/////////////////////////////////////////////////////////////////////////////

// CTheApp:
// See chimes.cpp for the code to the InitInstance member function.
//

class CTheApp : public CWinApp
{
public:
	BOOL InitInstance();
};

/////////////////////////////////////////////////////////////////////////////

#endif // __CHIMES_H__
