sceGameLiveStreamingEnableSocialFeedback

This commit is contained in:
Pavel 2023-02-10 08:59:23 +03:00
parent 94274390f2
commit 4c4445c9ba

View File

@ -33,6 +33,12 @@ begin
Result:=0;
end;
function ps4_sceGameLiveStreamingEnableSocialFeedback(isEnableSocialFeedback:Boolean):Integer; SysV_ABI_CDecl;
begin
Writeln('sceGameLiveStreamingEnableSocialFeedback,isEnableSocialFeedback=',isEnableSocialFeedback);
Result:=0;
end;
function Load_libSceGameLiveStreaming(Const name:RawByteString):TElf_node;
var
lib:PLIBRARY;
@ -46,6 +52,7 @@ begin
lib^.set_proc($FC41E753AF201315,@ps4_sceGameLiveStreamingPermitServerSideRecording);
lib^.set_proc($75633CD005F7F68E,@ps4_sceGameLiveStreamingEnableLiveStreaming);
lib^.set_proc($2B443111B0FBABE7,@ps4_sceGameLiveStreamingPermitLiveStreaming);
lib^.set_proc($C013905A36D631F5,@ps4_sceGameLiveStreamingEnableSocialFeedback);
end;
initialization