1 /* 2 * COPYRIGHT: GPL - See COPYING in the top level directory 3 * PROJECT: ReactOS Virtual DOS Machine 4 * FILE: subsystems/mvdm/ntvdm/hardware/sound/speaker.h 5 * PURPOSE: PC Speaker emulation 6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr) 7 */ 8 9 #ifndef _SPEAKER_H_ 10 #define _SPEAKER_H_ 11 12 /* FUNCTIONS ******************************************************************/ 13 14 VOID SpeakerChange(UCHAR Port61hValue); 15 16 VOID SpeakerInitialize(VOID); 17 VOID SpeakerCleanup(VOID); 18 19 #endif /* _SPEAKER_H_ */ 20