mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
19 lines
541 B
C
19 lines
541 B
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: subsystems/mvdm/ntvdm/hardware/sound/speaker.h
|
|
* PURPOSE: PC Speaker emulation
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#ifndef _SPEAKER_H_
|
|
#define _SPEAKER_H_
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
VOID SpeakerChange(UCHAR Port61hValue);
|
|
|
|
VOID SpeakerInitialize(VOID);
|
|
VOID SpeakerCleanup(VOID);
|
|
|
|
#endif /* _SPEAKER_H_ */
|