GetSoundDurationBJ

Parameters
soundHandle sound
return type
real
Source code
function GetSoundDurationBJ takes sound soundHandle returns real
    if (soundHandle == null) then
        return bj_NOTHING_SOUND_DURATION
    else
        return I2R(GetSoundDuration(soundHandle)) * 0.001
    endif
endfunction
Source
Blizzard.j
wc3modding.com
GetSoundDurationBJ