2013-11-03 20:31:19 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
2015-09-18 17:01:49 +00:00
|
|
|
* FILE: subsystems/mvdm/ntvdm/hardware/sound/speaker.h
|
2013-11-03 20:31:19 +00:00
|
|
|
* PURPOSE: PC Speaker emulation
|
|
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SPEAKER_H_
|
|
|
|
#define _SPEAKER_H_
|
|
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
2014-11-08 21:45:20 +00:00
|
|
|
VOID SpeakerChange(UCHAR Port61hValue);
|
2014-01-28 20:24:24 +00:00
|
|
|
|
2013-11-03 20:31:19 +00:00
|
|
|
VOID SpeakerInitialize(VOID);
|
|
|
|
VOID SpeakerCleanup(VOID);
|
|
|
|
|
2015-10-03 21:47:46 +00:00
|
|
|
#endif /* _SPEAKER_H_ */
|