Click here to Skip to main content
15,884,472 members
Articles / Desktop Programming / MFC

How to play and record sounds

Rate me:
Please Sign up or sign in to vote.
4.64/5 (53 votes)
12 Mar 2001 517.8K   14.7K   142  
A simple application that shows how to play and record sounds under Windows
// PtrFIFO.cpp: implementation of the CPtrFIFO class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "fister.h"
#include "PtrFIFO.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPtrFIFO::CPtrFIFO()
{
	m_pSemaphore = new CSemaphore(0, 10000);
}

CPtrFIFO::~CPtrFIFO()
{
	// this will also free the memory
	CPtrList::RemoveAll();
	delete m_pSemaphore;
}

void CPtrFIFO::Add(void *newElement)
{
	CPtrList::AddTail(newElement);
	m_pSemaphore->Unlock();
}

void* CPtrFIFO::Consume()
{
	m_pSemaphore->Lock();
	return CPtrList::RemoveHead();
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Denmark Denmark
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions