Skip to content

Commit

Permalink
sceVoiceDisconnectIPortFromOPort
Browse files Browse the repository at this point in the history
  • Loading branch information
Ordinary205 committed Dec 29, 2023
1 parent 03a8faf commit aca12e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ps4_libscevoice.pas
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ function ps4_sceVoiceConnectIPortToOPort(ips,ops:DWORD):Integer; SysV_ABI_CDecl;
Result:=0;
end;

function ps4_sceVoiceDisconnectIPortFromOPort(ips,ops:DWORD):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;

function Load_libSceVoice(Const name:RawByteString):TElf_node;
var
lib:PLIBRARY;
Expand All @@ -63,6 +68,7 @@ function Load_libSceVoice(Const name:RawByteString):TElf_node;
lib^.set_proc($E78A613C7D8B665B,@ps4_sceVoiceStart);
lib^.set_proc($9D7A637B9C8DA5A1,@ps4_sceVoiceCreatePort);
lib^.set_proc($A15F4601D276DC6C,@ps4_sceVoiceConnectIPortToOPort);
lib^.set_proc($6A3563DD01B6BA6E,@ps4_sceVoiceDisconnectIPortFromOPort);
end;

function Load_libSceVoiceQoS(Const name:RawByteString):TElf_node;
Expand Down

0 comments on commit aca12e6

Please sign in to comment.