2007-02-22 07:40:13 +01:00
|
|
|
format MS COFF
|
|
|
|
|
|
|
|
include "snd.inc"
|
|
|
|
include "proc32.inc"
|
|
|
|
|
|
|
|
section '.text' align 16 code readable executable
|
|
|
|
|
2007-02-25 10:21:19 +01:00
|
|
|
public _SetMasterVol@4
|
2007-02-22 07:40:13 +01:00
|
|
|
|
2007-02-25 10:21:19 +01:00
|
|
|
extrn hrdwSound
|
2007-02-22 07:40:13 +01:00
|
|
|
|
|
|
|
align 4
|
2007-02-26 13:12:22 +01:00
|
|
|
_SetMasterVol@4: ;vol:dword
|
2007-02-25 10:21:19 +01:00
|
|
|
|
2007-02-22 07:40:13 +01:00
|
|
|
push ebx
|
|
|
|
push ecx
|
|
|
|
|
2007-02-26 13:12:22 +01:00
|
|
|
xor eax, eax
|
|
|
|
lea ebx, [esp+12] ;[stream]
|
|
|
|
|
|
|
|
push eax ;.out_size
|
|
|
|
push eax ;.output
|
|
|
|
push 4 ;.inp_size
|
|
|
|
push ebx ;.input
|
|
|
|
push DEV_SET_MASTERVOL ;.code
|
|
|
|
push dword [hrdwSound] ;.handle
|
2007-02-22 07:40:13 +01:00
|
|
|
|
|
|
|
mov eax, 68
|
|
|
|
mov ebx, 17
|
2007-02-26 13:12:22 +01:00
|
|
|
mov ecx, esp
|
2007-02-22 07:40:13 +01:00
|
|
|
int 0x40
|
2007-02-26 13:12:22 +01:00
|
|
|
add esp, 24
|
2007-02-22 07:40:13 +01:00
|
|
|
pop ecx
|
|
|
|
pop ebx
|
2007-02-26 13:12:22 +01:00
|
|
|
ret 4
|
2007-02-25 10:21:19 +01:00
|
|
|
|