Skip to content

Commit

Permalink
Fix outdated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ordinary205 committed Dec 29, 2023
1 parent aca12e6 commit 476d843
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/ps4_libscevoice.pas
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ interface
SysUtils;

type
pSceVoiceInitParam=^SceVoiceInitParam;
SceVoiceInitParam=packed record
end;

pSceVoiceStartParam=^SceVoiceStartParam;
SceVoiceStartParam=packed record
end;
Expand All @@ -21,18 +25,12 @@ interface

implementation

function ps4_sceVoiceInit(
pArg:Pointer; //pSceVoiceInitParam
version:DWORD //SceVoiceVersion
):Integer; SysV_ABI_CDecl;
function ps4_sceVoiceInit(pArg:pSceVoiceInitParam):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;

function ps4_sceVoiceQoSInit(
pMemBlock:Pointer;
memSize:DWORD;
appType:Integer):Integer; SysV_ABI_CDecl;
function ps4_sceVoiceQoSInit(pMemBlock:Pointer;memSize:DWORD;appType:Integer):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;
Expand Down

0 comments on commit 476d843

Please sign in to comment.