Prevent overflow of the KernelBase->kb_Interrupts array when initialising IRQs. This...
[AROS.git] / compiler / include / prefs / sound.h
blobba0640f5c097bec52d46a10496fcbb44d1bd165b
1 #ifndef PREFS_SOUND_H
2 #define PREFS_SOUND_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #ifndef EXEC_TYPES_H
10 # include <exec/types.h>
11 #endif
13 #ifndef LIBRARIES_IFFPARSE_H
14 # include <libraries/iffparse.h>
15 #endif
18 #define ID_SOND MAKE_ID('S','O','N','D')
21 struct SoundPrefs
23 LONG sop_Reserved[4];
24 BOOL sop_DisplayQueue;
25 BOOL sop_AudioQueue;
26 UWORD sop_AudioType;
27 UWORD sop_AudioVolume;
28 UWORD sop_AudioPeriod;
29 UWORD sop_AudioDuration;
30 char sop_AudioFileName[256];
34 #define SPTYPE_BEEP 0
35 #define SPTYPE_SAMPLE 1
37 #endif /* PREFS_SOUND_H */