2013-11-03 20:31:19 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
|
|
* FILE: speaker.h
|
|
|
|
* PURPOSE: PC Speaker emulation
|
|
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SPEAKER_H_
|
|
|
|
#define _SPEAKER_H_
|
|
|
|
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
|
|
|
|
#include "ntvdm.h"
|
|
|
|
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
2014-01-29 00:25:43 +00:00
|
|
|
VOID SpeakerChange(VOID);
|
2014-01-28 20:24:24 +00:00
|
|
|
|
2013-11-03 20:31:19 +00:00
|
|
|
VOID SpeakerInitialize(VOID);
|
|
|
|
VOID SpeakerCleanup(VOID);
|
|
|
|
|
|
|
|
#endif // _SPEAKER_H_
|
|
|
|
|
|
|
|
/* EOF */
|