If I have a buffer with sine data:
pseudo code:
buffer dword 512 dup (?)
for c=0 to size
buffer=sin(c)
can I somehow listen to it?
call playbuffer //Possible?
/Mike
pseudo code:
buffer dword 512 dup (?)
for c=0 to size
buffer=sin(c)
can I somehow listen to it?
call playbuffer //Possible?
/Mike
Search for "EasySound" here.
Edit: There it is:
http://www.asmcommunity.net/board/index.php?topic=22355.0
Edit: There it is:
http://www.asmcommunity.net/board/index.php?topic=22355.0
Thank you. 8)