mirror of
https://github.com/red-prig/fpPS4.git
synced 2024-11-23 06:19:57 +00:00
sceSystemGestureUpdateTouchRecognizer + sceShareUtilityAdvanceSetUploadContentData (#180)
* sceSystemGestureUpdateTouchRecognizer * sceShareUtilityAdvanceSetUploadContentData
This commit is contained in:
parent
9af004761d
commit
585d06fa7c
@ -30,6 +30,12 @@ begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function ps4_sceShareUtilityAdvanceSetUploadContentData(const contentData:PChar;
|
||||
contentDataLength:QWORD):Integer; SysV_ABI_CDecl;
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function Load_libSceShareUtility(Const name:RawByteString):TElf_node;
|
||||
var
|
||||
lib:PLIBRARY;
|
||||
@ -39,6 +45,7 @@ begin
|
||||
lib:=Result._add_lib('libSceShareUtility');
|
||||
lib^.set_proc($8FB0E56A50731E1F,@ps4_sceShareUtilityInitializeEx2);
|
||||
lib^.set_proc($BB86C21A4AA1381E,@ps4_sceShareUtilityAdvanceInitialize);
|
||||
lib^.set_proc($91AAE72616A474A8,@ps4_sceShareUtilityAdvanceSetUploadContentData);
|
||||
end;
|
||||
|
||||
initialization
|
||||
|
@ -147,6 +147,12 @@ begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function ps4_sceSystemGestureUpdateTouchRecognizer(gestureHandle:Integer;
|
||||
touchRecognizer:pSceSystemGestureTouchRecognizer):Integer; SysV_ABI_CDecl;
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function ps4_sceSystemGestureGetTouchEventsCount(gestureHandle:Integer;
|
||||
const touchRecognizer:pSceSystemGestureTouchRecognizer):Integer; SysV_ABI_CDecl;
|
||||
begin
|
||||
@ -167,6 +173,7 @@ begin
|
||||
lib^.set_proc($D4C30AD16FE43200,@ps4_sceSystemGestureAppendTouchRecognizer);
|
||||
lib^.set_proc($1A014C6F6DAC6DB2,@ps4_sceSystemGestureUpdatePrimitiveTouchRecognizer);
|
||||
lib^.set_proc($C0F246C08D913362,@ps4_sceSystemGestureUpdateAllTouchRecognizer);
|
||||
lib^.set_proc($8F887CD8241610DA,@ps4_sceSystemGestureUpdateTouchRecognizer);
|
||||
lib^.set_proc($87CBA89E0701355B,@ps4_sceSystemGestureGetTouchEventsCount);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user