mirror of https://github.com/red-prig/fpPS4.git
SceSocialScreenInitialize (#164)
This commit is contained in:
parent
6d8e9b9598
commit
d28e1d1698
|
@ -61,6 +61,7 @@ uses
|
|||
ps4_libSceUlt,
|
||||
ps4_libSceGameLiveStreaming,
|
||||
ps4_libSceSharePlay,
|
||||
ps4_libSceSocialScreen,
|
||||
ps4_libSceVideoRecording,
|
||||
ps4_libSceContentExport,
|
||||
ps4_libSceUsbd,
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
unit ps4_libSceSocialScreen;
|
||||
|
||||
{$mode ObjFPC}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
ps4_program;
|
||||
|
||||
implementation
|
||||
|
||||
function ps4_sceSocialScreenInitialize():Integer; SysV_ABI_CDecl;
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function Load_libSceSocialScreen(Const name:RawByteString):TElf_node;
|
||||
var
|
||||
lib:PLIBRARY;
|
||||
begin
|
||||
Result:=TElf_node.Create;
|
||||
Result.pFileName:=name;
|
||||
|
||||
lib:=Result._add_lib('libSceSocialScreen');
|
||||
lib^.set_proc($A48EE81523CFEB90,@ps4_sceSocialScreenInitialize);
|
||||
end;
|
||||
|
||||
initialization
|
||||
ps4_app.RegistredPreLoad('libSceSocialScreen.prx',@Load_libSceSocialScreen);
|
||||
|
||||
end.
|
||||
|
Loading…
Reference in New Issue