home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d2xx
/
d201
/
draco.lha
/
Draco
/
drinc
/
devices
/
audio.g
next >
Wrap
Text File
|
1989-04-03
|
992b
|
46 lines
/*requirespreviousinclusionofinclude:exec/io.g*/
*charAUDIONAME="audio.device";
uintADHARD_CHANNELS=4;
int
ADALLOC_MINPREC=-128,
ADALLOC_MAXPREC=+127;
uint
ADCMD_FREE=CMD_NONSTD+0,
ADCMD_SETPREC=CMD_NONSTD+1,
ADCMD_FINISH=CMD_NONSTD+2,
ADCMD_PERVOL=CMD_NONSTD+3,
ADCMD_LOCK=CMD_NONSTD+4,
ADCMD_WAITCYCLE =CMD_NONSTD+5,
ADCMDB_NOUNIT=5,
ADCMDF_NOUNIT=1<<ADCMDB_NOUNIT,
ADCMD_ALLOCATE=ADCMDF_NOUNIT+0,
ADIOB_PERVOL=4,
ADIOF_PERVOL=1<<ADIOB_PERVOL,
ADIOB_SYNCCYCLE =5,
ADIOF_SYNCCYCLE =1<<ADIOB_SYNCCYCLE,
ADIOB_NOWAIT=6,
ADIOF_NOWAIT=1<<ADIOB_NOWAIT,
ADIOB_WRITEMESSAGE=7,
ADIOF_WRITEMESSAGE=1<<ADIOB_WRITEMESSAGE;
int
ADIOERR_NOALLOCATION=-10,
ADIOERR_ALLOCFAILED=-11,
ADIOERR_CHANNELSTOLEN=-12;
type
IOAudio_t=struct{
IORequest_tioa_Request;
intioa_AllocKey;
*shortioa_Data;
ulongioa_Length;
uintioa_Period;
uintioa_Volume;
uintioa_Cycles;
Message_tioa_WriteMsg;
};