Click here to Skip to main content
15,894,343 members
Articles / Desktop Programming / MFC

A Basic Media Player

Rate me:
Please Sign up or sign in to vote.
4.45/5 (40 votes)
10 Jan 2013GPL33 min read 265.3K   12.7K   106  
Using MCIWnd wrapper class to write a simple media player
// Player.h: interface for the CPlayer class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PLAYER_H_INCLUDED_)
#define AFX_PLAYER_H_INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CPlayer  
{
public:
	HWND GetParent();
	void SetParent(HWND hParent);
	void Break();
	void Loop();
	CString GetMode();
	void Resume();
	void Pause();
	void Stop();
	void Play();
	CString GetPath();
	void SetPath(CString sPath);
	CPlayer(HWND hwParent);
	CPlayer::CPlayer();
	virtual ~CPlayer();


protected:
	HWND hwndParent;
	HWND c_Player;
	CString m_sPath;
};

#endif // !defined(AFX_PLAYER_H_INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Chief Technology Officer
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions