Re: Error on uos_AddIntoDevOut
Posted by
fredvs on
URL: http://uos-forum.108.s1.nabble.com/Error-on-uos-AddIntoDevOut-tp1522p1527.html
LemonParty wrote
This is how I load library:
Result:= uos_loadlib(nil, nil, PChar(ProgramsDir + 'dynlibs\Windows\64bit\LibMpg123-64.dll'), nil, nil, nil) = 0;
Result is true, I checked.
OK, this one is the problem. The result is true but you did not load portaudio, who is the first parameter and is needed to access your sound card(s).
Try with this:
Result:= uos_loadlib(PChar(ProgramsDir + 'dynlibs\Windows\64bit\LibPortaudio-64.dll'), nil, PChar(ProgramsDir + 'dynlibs\Windows\64bit\LibMpg123-64.dll'), nil, nil, nil) = 0;