sceHttpsDisableOption

This commit is contained in:
red-prig 2023-01-07 20:30:48 +03:00
parent 40801a6f03
commit 58c5374f93

View File

@ -48,6 +48,21 @@ begin
Result:=0;
end;
function ps4_sceHttpsEnableOption(id:Integer;sslFlags:DWORD):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;
function ps4_sceHttpsDisableOption(id:Integer;sslFlags:DWORD):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;
function ps4_sceHttpsSetSslVersion(id:Integer;version:Integer):Integer; SysV_ABI_CDecl;
begin
Result:=0;
end;
type
PSceHttpEpollHandle=^SceHttpEpollHandle;
SceHttpEpollHandle=Pointer;
@ -204,6 +219,9 @@ begin
lib^.set_proc($D206233D347FE9C6,@ps4_sceHttpCreateTemplate);
lib^.set_proc($E08F2F129B84859F,@ps4_sceHttpDeleteTemplate);
lib^.set_proc($B36FCD3C8BF3FA20,@ps4_sceHttpSetNonblock);
lib^.set_proc($7F8D8ADFB9A6E513,@ps4_sceHttpsEnableOption);
lib^.set_proc($992402C73593C152,@ps4_sceHttpsDisableOption);
lib^.set_proc($539131406CB2C7DB,@ps4_sceHttpsSetSslVersion);
lib^.set_proc($EB7F3575617EC6C4,@ps4_sceHttpCreateEpoll);
lib^.set_proc($C1885755F4B612DE,@ps4_sceHttpDestroyEpoll);
lib^.set_proc($FF19BB91940DA472,@ps4_sceHttpSetEpoll);