Simple as posible:
var
MyStream : HStream;
begin
mystream := Bass_StreamCreateFile(false,Pchar('C:\your.wav'),0,0,0);
if mystream <> 0 then
Bass_StreamPlay(MyStream,true,0);
end;
You also can use the BASS_SAMPLE-Functions to do this.
Greetings Ghostwalker