	IFND	PREFS_SOUND_I
PREFS_SOUND_I	SET	1
**
**	$Id: sound.i,v 38.2 91/06/20 11:57:13 vertex Exp $
**
**	File format for sound preferences
**
**	(C) Copyright 1991 Commodore-Amiga, Inc.
**	All Rights Reserved
**

;---------------------------------------------------------------------------

    IFND EXEC_TYPES_I
    INCLUDE "exec/types.i"
    ENDC

;---------------------------------------------------------------------------

ID_SOND equ "SOND"


   STRUCTURE SoundPrefs,0
	STRUCT sop_Reserved,4*4		; System reserved
	BOOL   sop_DisplayQueue         ; Flash the display?
	BOOL   sop_AudioQueue           ; Make some sound?
	UWORD  sop_AudioType            ; Type of sound, see below
	UWORD  sop_AudioVolume          ; Volume of sound, 0..64
	UWORD  sop_AudioPeriod          ; Period of sound, 127..2500
	UWORD  sop_AudioDuration	; Length of simple beep
	STRUCT sop_AudioFileName,256    ; Filename of 8SVX file
    LABEL SoundPrefs_SIZEOF


; constants for SoundPrefs.sop_AudioType
SPTYPE_BEEP	equ 0	; simple beep sound
SPTYPE_SAMPLE	equ 1	; sampled sound

;---------------------------------------------------------------------------

	ENDC	; PREFS_SOUND_I
