forked from KolibriOS/kolibrios
44 lines
917 B
NASM
44 lines
917 B
NASM
|
format MS COFF
|
||
|
|
||
|
include "snd.inc"
|
||
|
include "proc32.inc"
|
||
|
|
||
|
section '.text' align 16 code readable executable
|
||
|
|
||
|
extrn hSound
|
||
|
|
||
|
public _SetFormat@8
|
||
|
|
||
|
align 4
|
||
|
proc _SetFormat@8 stdcall, str:dword, fmt:dword
|
||
|
locals
|
||
|
handle dd ?
|
||
|
io_code dd ?
|
||
|
input dd ?
|
||
|
inp_size dd ?
|
||
|
output dd ?
|
||
|
out_size dd ?
|
||
|
endl
|
||
|
|
||
|
push ebx
|
||
|
push ecx
|
||
|
mov eax, [hSound]
|
||
|
lea ebx, [str]
|
||
|
xor ecx, ecx
|
||
|
|
||
|
mov [handle], eax
|
||
|
mov [io_code], SND_SETFORMAT
|
||
|
mov [input], ebx
|
||
|
mov [inp_size], 8
|
||
|
mov [output], ecx
|
||
|
mov [out_size], ecx
|
||
|
|
||
|
mov eax, 68
|
||
|
mov ebx, 17
|
||
|
lea ecx, [handle]
|
||
|
int 0x40
|
||
|
pop ecx
|
||
|
pop ebx
|
||
|
ret
|
||
|
endp
|