Important: Inside Macintosh: Sound is deprecated as of Mac OS X v10.5. For new audio development in Mac OS X, use Core Audio. See the Audio page in the ADC Reference Library.
SndGetSysBeepState
You can use theSndGetSysBeepState
procedure to determine if the system alert sound is enabled.
PROCEDURE SndGetSysBeepState (VAR sysBeepState: Integer);
- sysBeepState
- On exit, the state of the system alert sound.
DESCRIPTION
TheSndGetSysBeepState
procedure returns one of two states in thesysBeepState
parameter, either thesysBeepDisable
or thesysBeepEnable
constant.
CONST sysBeepDisable = $0000; {system alert sound disabled} sysBeepEnable = $0001; {system alert sound enabled}SPECIAL CONSIDERATIONS
You can call theSndGetSysBeepState
procedure at interrupt time.ASSEMBLY-LANGUAGE INFORMATION
The trap macro and routine selector for theSndGetSysBeepState
procedure are
Trap macro Selector _SoundDispatch $00180008