type Audiostream is private;
type A_Audiostream is access all Audiostream;
type Bits_Type is ( Eight_Bits, Sixteen_Bits );
procedure Free_Audio_Stream_Buffer
( | stream | : A_Audiostream ); |
function Play_Audio_Stream
( | len | : Natural; |
bits | : Bits_Type; | |
stereo | : Integer; | |
freq | : Integer; | |
vol | : Volume_Type; | |
pan | : Pan_Type ) |
procedure Stop_Audio_Stream
( | stream | : in out A_Audiostream ); |