1 #ifndef PREFS_SOUND_H
    2 #define PREFS_SOUND_H
    3 
    4 /*
    5 	sound prefs definitions
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #ifndef LIBRARIES_IFFPARSE_H
   15 # include <libraries/iffparse.h>
   16 #endif
   17 
   18 #pragma pack(2)
   19 
   20 
   21 #define ID_SOND  MAKE_ID('S','O','N','D')
   22 
   23 
   24 struct SoundPrefs
   25 {
   26 	LONG  sop_Reserved[4];
   27 	BOOL  sop_DisplayQueue;
   28 	BOOL  sop_AudioQueue;
   29 	UWORD sop_AudioType;
   30 	UWORD sop_AudioVolume;
   31 	UWORD sop_AudioPeriod;
   32 	UWORD sop_AudioDuration;
   33 	char  sop_AudioFileName[256];
   34 };
   35 
   36 
   37 #define SPTYPE_BEEP    0
   38 #define SPTYPE_SAMPLE  1
   39 
   40 
   41 #pragma pack()
   42 
   43 #endif /* PREFS_SOUND_H */