getdtablesize

This commit is contained in:
Pavel 2022-12-16 16:41:48 +03:00
parent 495036f660
commit 2d023245c8
2 changed files with 11 additions and 0 deletions

View File

@ -72,6 +72,8 @@ function ps4_sceKernelRename(from,pto:PChar):Integer; SysV_ABI_CDecl;
function ps4_sceKernelCheckReachability(path:PChar):Integer; SysV_ABI_CDecl;
function ps4_getdtablesize:Integer; SysV_ABI_CDecl;
implementation
uses
@ -979,5 +981,12 @@ begin
end;
function ps4_getdtablesize:Integer; SysV_ABI_CDecl;
begin
Result:=High(Integer);
_set_errno(0);
end;
end.

View File

@ -1286,6 +1286,8 @@ begin
lib^.set_proc($B96C96DEFF7CB14E,@ps4_sceKernelCheckReachability);
lib^.set_proc($B19BB06833C04CAB,@ps4_getdtablesize);
//file
px:=Result._add_lib('libScePosix');